diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-11 07:59:56 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-11 07:59:56 -0800 |
commit | 93e680b7d3114d989cf11e3bd4b4dfa65537bc7b (patch) | |
tree | b96fa3f21d4fe7a17d6f0bf57e697d546fbfa885 /passes/techmap/abc9.cc | |
parent | 9005bb97ff35513a510344108db203c5f5193ec6 (diff) | |
parent | d2df2a8fef8d01b70fa5faa4397e1d628b9ceb5b (diff) | |
download | yosys-93e680b7d3114d989cf11e3bd4b4dfa65537bc7b.tar.gz yosys-93e680b7d3114d989cf11e3bd4b4dfa65537bc7b.tar.bz2 yosys-93e680b7d3114d989cf11e3bd4b4dfa65537bc7b.zip |
Merge remote-tracking branch 'origin/master' into eddie/abc9_mfs
Diffstat (limited to 'passes/techmap/abc9.cc')
-rw-r--r-- | passes/techmap/abc9.cc | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index 8cb34e523..3fc6ed2c2 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -416,13 +416,11 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *module, std::string scrip dict<IdString, bool> abc9_box; vector<RTLIL::Cell*> boxes; - for (auto it = module->cells_.begin(); it != module->cells_.end(); ) { - auto cell = it->second; + for (auto cell : module->cells().to_vector()) { if (cell->type.in(ID($_AND_), ID($_NOT_), ID($__ABC9_FF_))) { - it = module->cells_.erase(it); + module->remove(cell); continue; } - ++it; RTLIL::Module* box_module = design->module(cell->type); auto jt = abc9_box.find(cell->type); if (jt == abc9_box.end()) |