From 74d38db3b5e6a029d035f980a6b7cd7d2de51519 Mon Sep 17 00:00:00 2001 From: Adrian Parvin Ouano Date: Sun, 8 Oct 2023 01:23:00 +0800 Subject: [PATCH] alumacc: merge eq independent of sign --- passes/techmap/alumacc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/techmap/alumacc.cc b/passes/techmap/alumacc.cc index e4e70004c..bd183d815 100644 --- a/passes/techmap/alumacc.cc +++ b/passes/techmap/alumacc.cc @@ -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; }