mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
verilog: fix signedness when removing unreachable cases
This commit is contained in:
parent
c525b5f919
commit
cffec1f95f
3 changed files with 39 additions and 0 deletions
|
@ -1531,6 +1531,7 @@ bool AstNode::simplify(bool const_fold, bool at_zero, bool in_lvalue, int stage,
|
|||
detectSignWidth(width_hint, sign_hint);
|
||||
while (children[0]->simplify(const_fold, at_zero, in_lvalue, stage, width_hint, sign_hint, in_param)) { }
|
||||
if (children[0]->type == AST_CONSTANT && children[0]->bits_only_01()) {
|
||||
children[0]->is_signed = sign_hint;
|
||||
RTLIL::Const case_expr = children[0]->bitsAsConst(width_hint, sign_hint);
|
||||
std::vector<AstNode*> new_children;
|
||||
new_children.push_back(children[0]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue