aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-11-07 18:17:10 +0100
committerClifford Wolf <clifford@clifford.at>2013-11-07 18:17:10 +0100
commit947bd9b96bb978e204275d6fbbc9ce9ff6eda28c (patch)
treec9f0f53390c6fdfba52d26a3571d761ef28449f9 /passes
parent0e1661f84e99f1d4a487e7a432b05a6cb2071714 (diff)
downloadyosys-947bd9b96bb978e204275d6fbbc9ce9ff6eda28c.tar.gz
yosys-947bd9b96bb978e204275d6fbbc9ce9ff6eda28c.tar.bz2
yosys-947bd9b96bb978e204275d6fbbc9ce9ff6eda28c.zip
Renamed extend_un0() to extend_u0() and use it in genrtlil
Diffstat (limited to 'passes')
-rw-r--r--passes/opt/opt_const.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/opt/opt_const.cc b/passes/opt/opt_const.cc
index f20181f1e..b7b361e95 100644
--- a/passes/opt/opt_const.cc
+++ b/passes/opt/opt_const.cc
@@ -151,8 +151,8 @@ void replace_const_cells(RTLIL::Design *design, RTLIL::Module *module, bool cons
if (cell->parameters["\\A_WIDTH"].as_int() != cell->parameters["\\B_WIDTH"].as_int()) {
int width = std::max(cell->parameters["\\A_WIDTH"].as_int(), cell->parameters["\\B_WIDTH"].as_int());
- a.extend_un0(width, cell->parameters["\\A_SIGNED"].as_bool() && cell->parameters["\\B_SIGNED"].as_bool());
- b.extend_un0(width, cell->parameters["\\A_SIGNED"].as_bool() && cell->parameters["\\B_SIGNED"].as_bool());
+ a.extend_u0(width, cell->parameters["\\A_SIGNED"].as_bool() && cell->parameters["\\B_SIGNED"].as_bool());
+ b.extend_u0(width, cell->parameters["\\A_SIGNED"].as_bool() && cell->parameters["\\B_SIGNED"].as_bool());
}
RTLIL::SigSpec new_a, new_b;