summaryrefslogtreecommitdiff
path: root/frontends
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-07-07 16:49:30 +0200
committerClifford Wolf <clifford@clifford.at>2013-07-07 16:49:30 +0200
commite8da3ea7b647f2c1eeba8a84590df7b05ca4e046 (patch)
tree61d47e86a00eedaa597129a8d161b69832e5d1d0 /frontends
parenteff68560a2914791c8d0377edb5922fd5077f4f3 (diff)
Fixed another bug found using vloghammer
Diffstat (limited to 'frontends')
-rw-r--r--frontends/ast/genrtlil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/ast/genrtlil.cc b/frontends/ast/genrtlil.cc
index 03bb8a43..f9f5c6f8 100644
--- a/frontends/ast/genrtlil.cc
+++ b/frontends/ast/genrtlil.cc
@@ -798,7 +798,7 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint)
if (0) { case AST_SHIFT_SLEFT: type_name = "$sshl"; is_signed = true; }
if (0) { case AST_SHIFT_SRIGHT: type_name = "$sshr"; is_signed = true; }
{
- RTLIL::SigSpec left = children[0]->genRTLIL(width_hint);
+ RTLIL::SigSpec left = children[0]->genRTLIL();
RTLIL::SigSpec right = children[1]->genRTLIL(width_hint);
int width = width_hint > 0 ? width_hint : left.width;
return binop2rtlil(this, type_name, width, left, right);