Skip to content

Commit

Permalink
alumacc: merge eq independent of sign
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianparvino committed Oct 7, 2023
1 parent 51e9b08 commit 74d38db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion passes/techmap/alumacc.cc
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ struct AlumaccWorker
alunode_t *n = nullptr;

for (auto node : sig_alu[RTLIL::SigSig(A, B)])
if (node->is_signed == is_signed && node->invert_b && node->c == State::S1) {
if (node->invert_b && node->c == State::S1) {
n = node;
break;
}
Expand Down

0 comments on commit 74d38db

Please sign in to comment.