3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 09:05:32 +00:00

log: add log_deprecated

This commit is contained in:
Emil J. Tywoniak 2024-10-03 12:14:12 +02:00
parent 566dcf1878
commit 9beb4bfddd
4 changed files with 16 additions and 2 deletions

View file

@ -145,7 +145,7 @@ struct LoggerPass : public Pass {
}
if (args[argidx] == "-experimental" && argidx+1 < args.size()) {
std::string value = args[++argidx];
log("Added '%s' experimental ignore list.\n", value.c_str());
log("Added '%s' experimental/deprecated ignore list.\n", value.c_str());
log_experimentals_ignored.insert(value);
continue;
}