ABC: Refactored fEnabled flag

This commit is contained in:
AdvaySingh1 2026-02-02 12:09:16 -08:00
parent f452702017
commit 07e21e763a
2 changed files with 2 additions and 2 deletions

2
abc

@ -1 +1 @@
Subproject commit da3457143c09ddc9e3e8ae73f8d41c92f288daa1
Subproject commit 0b06bc1ab08186152de5f74e1a71674d9cdb974c

View File

@ -992,7 +992,7 @@ void AbcModuleState::prepare_module(RTLIL::Design *design, RTLIL::Module *module
log_header(design, "Extracting gate netlist of module `%s' to `%s/input.blif'..\n",
module->name.c_str(), replace_tempdir(run_abc.tempdir_name, run_abc.tempdir_name, config.show_tempdir).c_str());
std::string abc_script = stringf("read_blif " + (config.abc_node_retention ? " -r" : "") + " \"%s/input.blif\"; ", run_abc.tempdir_name);
std::string abc_script = stringf((std::string("read_blif") + (config.abc_node_retention ? " -r" : "") + " \"%s/input.blif\"; ").c_str(), run_abc.tempdir_name);
if (!config.liberty_files.empty() || !config.genlib_files.empty()) {
std::string dont_use_args;