3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 02:15:20 +00:00

read_aiger to not do -purge for clean

This commit is contained in:
Eddie Hung 2019-02-20 17:33:04 -08:00
parent 32853b1f8d
commit 9e299a0908

View file

@ -458,7 +458,7 @@ void AigerReader::parse_xaiger()
module->fixup_ports();
design->add(module);
Pass::call(design, "clean -purge");
Pass::call(design, "clean");
}
void AigerReader::parse_aiger_ascii()