3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-27 02:45:52 +00:00

Another vloghammer related bugfix

This commit is contained in:
Clifford Wolf 2013-07-11 19:24:59 +02:00
parent a9fefc6ce1
commit b380c8c790
2 changed files with 8 additions and 1 deletions

View file

@ -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;
}