aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-04-23 13:42:35 -0700
committerEddie Hung <eddie@fpgeh.com>2019-04-23 13:42:35 -0700
commitd9c915042a610672e313f976cdbcbf9a814c380d (patch)
treeedb927dc53b4678878b1a04ba3614c66cd6feaf6
parent91c3afcab723d85d3c6931561cb13ad7b70e7e5c (diff)
downloadyosys-d9c915042a610672e313f976cdbcbf9a814c380d.tar.gz
yosys-d9c915042a610672e313f976cdbcbf9a814c380d.tar.bz2
yosys-d9c915042a610672e313f976cdbcbf9a814c380d.zip
Move clean from aigerparse to abc9
-rw-r--r--frontends/aiger/aigerparse.cc2
-rw-r--r--passes/techmap/abc9.cc1
2 files changed, 1 insertions, 2 deletions
diff --git a/frontends/aiger/aigerparse.cc b/frontends/aiger/aigerparse.cc
index b9ab6fc09..904a1079d 100644
--- a/frontends/aiger/aigerparse.cc
+++ b/frontends/aiger/aigerparse.cc
@@ -598,8 +598,6 @@ next_line:
module->fixup_ports();
design->add(module);
- Pass::call(design, "clean");
-
for (auto cell : module->cells().to_vector()) {
if (cell->type != "$lut") continue;
auto y_port = cell->getPort("\\Y").as_bit();
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc
index 67d0981f4..2aa19b348 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -548,6 +548,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri
RTLIL::Module *mapped_mod = mapped_design->modules_["\\netlist"];
if (mapped_mod == NULL)
log_error("ABC output file does not contain a module `netlist'.\n");
+ Pass::call(mapped_design, "clean");
pool<RTLIL::SigBit> output_bits;
for (auto &it : mapped_mod->wires_) {