aboutsummaryrefslogtreecommitdiffstats
path: root/passes/opt
diff options
context:
space:
mode:
authorKaj Tuomi <kaj.tuomi@siru.fi>2017-10-17 09:53:11 +0300
committerKaj Tuomi <kaj.tuomi@siru.fi>2017-10-17 09:53:11 +0300
commit778df553eda678c31eed91f16728fab84a8c8c1d (patch)
treec4779751b645d6a28881a9bb50653a54518708f8 /passes/opt
parent3efce9dea99d8b18e6e4694160b5348373afc175 (diff)
parent716dbc92745aa8b41d85a60d50263433d5a79393 (diff)
downloadyosys-778df553eda678c31eed91f16728fab84a8c8c1d.tar.gz
yosys-778df553eda678c31eed91f16728fab84a8c8c1d.tar.bz2
yosys-778df553eda678c31eed91f16728fab84a8c8c1d.zip
Merge branch 'master' of https://github.com/cliffordwolf/yosys into vector_fix
Diffstat (limited to 'passes/opt')
-rw-r--r--passes/opt/opt_reduce.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/passes/opt/opt_reduce.cc b/passes/opt/opt_reduce.cc
index 10bdf7221..eb9d02ad5 100644
--- a/passes/opt/opt_reduce.cc
+++ b/passes/opt/opt_reduce.cc
@@ -88,7 +88,6 @@ struct OptReduceWorker
RTLIL::SigSpec new_sig_a(new_sig_a_bits);
if (new_sig_a != sig_a || sig_a.size() != cell->getPort("\\A").size()) {
- new_sig_a.sort_and_unify();
log(" New input vector for %s cell %s: %s\n", cell->type.c_str(), cell->name.c_str(), log_signal(new_sig_a));
did_something = true;
total_count++;