aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--backends/aiger/xaiger.cc2
-rw-r--r--passes/techmap/abc9_ops.cc9
2 files changed, 1 insertions, 10 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc
index b424eca2c..20f2385f6 100644
--- a/backends/aiger/xaiger.cc
+++ b/backends/aiger/xaiger.cc
@@ -370,7 +370,7 @@ struct XAigerWriter
unused_bits.erase(I);
}
if (w->port_output)
- for (const auto &b : rhs.bits()) {
+ for (const auto &b : rhs) {
SigBit O = sigmap(b);
if (O != b)
alias_map[O] = b;
diff --git a/passes/techmap/abc9_ops.cc b/passes/techmap/abc9_ops.cc
index 816c0276a..a686bbd32 100644
--- a/passes/techmap/abc9_ops.cc
+++ b/passes/techmap/abc9_ops.cc
@@ -754,15 +754,6 @@ void reintegrate(RTLIL::Module *module)
c.wire = module->wires_.at(remap_name(c.wire->name));
newsig.append(c);
}
-
- auto it = existing_cell->connections_.find(port_name);
- if (it == existing_cell->connections_.end())
- continue;
- if (GetSize(newsig) > GetSize(it->second))
- newsig = newsig.extract(0, GetSize(it->second));
- else
- log_assert(GetSize(newsig) == GetSize(it->second));
-
cell->setPort(port_name, newsig);
if (w->port_input && !abc9_flop)