Remove recover_names from longloop_select

This commit is contained in:
Akash Levy 2025-05-08 07:20:28 -07:00
parent c55ee83992
commit e4a8cc60d3
1 changed files with 2 additions and 2 deletions

View File

@ -234,13 +234,13 @@ struct LongLoopSelect : public ScriptPass {
}
}
if (!abc_script.empty()) {
std::string command = "recover_names abc -map_src " + src_info + " -script " + abc_script;
std::string command = "abc -map_src " + src_info + " -script " + abc_script;
log(" Executing: %s\n", command.c_str());
log_flush();
Pass::call(design, command);
} else if (!abc_options.empty()) {
abc_options.erase(std::remove(abc_options.begin(), abc_options.end(), '"'), abc_options.end());
std::string command = "recover_names abc -map_src " + src_info + " " + abc_options;
std::string command = "abc -map_src " + src_info + " " + abc_options;
log(" Executing: %s\n", command.c_str());
log_flush();
Pass::call(design, command);