mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 06:03:23 +00:00
Strictly zero-extend unsigned A-inputs of shift operations
This commit is contained in:
parent
b1b8fe3a56
commit
a1bfde8c5e
2 changed files with 3 additions and 3 deletions
|
@ -634,7 +634,7 @@ struct SatGen
|
|||
while (undef_y.size() < undef_a.size())
|
||||
undef_y.push_back(ez->literal());
|
||||
while (undef_y.size() > undef_a.size())
|
||||
undef_a.push_back(undef_a.back());
|
||||
undef_a.push_back(cell->parameters["\\A_SIGNED"].as_bool() ? undef_a.back() : ez->FALSE);
|
||||
|
||||
tmp = undef_a;
|
||||
for (size_t i = 0; i < b.size(); i++)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue