summaryrefslogtreecommitdiff
path: root/frontends/ast
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2013-07-11 19:24:59 +0200
committerClifford Wolf <clifford@clifford.at>2013-07-11 19:24:59 +0200
commitb380c8c790233f9237b503656cfd28fd5e65eff5 (patch)
treed7a717de0615f1de66c38acfc753c404a603f1f2 /frontends/ast
parenta9fefc6ce1c0c351f88e61ec2a01ec64fc30d28f (diff)
Another vloghammer related bugfix
Diffstat (limited to 'frontends/ast')
-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 7a9c8ba6..791ee986 100644
--- a/frontends/ast/genrtlil.cc
+++ b/frontends/ast/genrtlil.cc
@@ -836,7 +836,7 @@ RTLIL::SigSpec AstNode::genRTLIL(int width_hint, bool sign_hint)
case AST_TO_SIGNED:
case AST_TO_UNSIGNED: {
RTLIL::SigSpec sig = children[0]->genRTLIL();
- is_signed = type == AST_TO_SIGNED;
+ is_signed = sign_hint;
return sig;
}