aboutsummaryrefslogtreecommitdiffstats
path: root/passes/opt
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2021-01-14 09:58:33 +0100
committerMarcelina Koƛcielnicka <mwk@0x04.net>2021-01-14 14:54:08 +0100
commit01626e6746e85832d5b75785b9e45f39ff8eb299 (patch)
treee32c1fcb601b283525d38bab8d1d2861f45e9118 /passes/opt
parent7cd044bbc4cc4b63302363f77d913403957fdcd3 (diff)
downloadyosys-01626e6746e85832d5b75785b9e45f39ff8eb299.tar.gz
yosys-01626e6746e85832d5b75785b9e45f39ff8eb299.tar.bz2
yosys-01626e6746e85832d5b75785b9e45f39ff8eb299.zip
opt_share: Fix X and CO signal width for shifted $alu in opt_share.
These need to be the same length as actual Y, not visible part of Y. Fixes #2538.
Diffstat (limited to 'passes/opt')
-rw-r--r--passes/opt/opt_share.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/opt/opt_share.cc b/passes/opt/opt_share.cc
index 53296699c..62a478673 100644
--- a/passes/opt/opt_share.cc
+++ b/passes/opt/opt_share.cc
@@ -244,8 +244,8 @@ void merge_operators(RTLIL::Module *module, RTLIL::Cell *mux, const std::vector<
}
if (shared_op->type.in(ID($alu))) {
- shared_op->setPort(ID::X, module->addWire(NEW_ID, GetSize(new_sig_out)));
- shared_op->setPort(ID::CO, module->addWire(NEW_ID, GetSize(new_sig_out)));
+ shared_op->setPort(ID::X, module->addWire(NEW_ID, GetSize(new_out)));
+ shared_op->setPort(ID::CO, module->addWire(NEW_ID, GetSize(new_out)));
}
bool is_fine = shared_op->type.in(FINE_BITWISE_OPS);