aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/nlutmap.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-08-15 10:19:29 -0700
committerEddie Hung <eddie@fpgeh.com>2019-08-15 10:19:29 -0700
commit78ba8b85749abacdf9a6953fd2e6f430b6041a94 (patch)
tree06641220842902317fd89a76e5f1726b6a6abe8d /passes/techmap/nlutmap.cc
parent9f98241010481588d643c6d4e24d7b9af2b37c2f (diff)
downloadyosys-78ba8b85749abacdf9a6953fd2e6f430b6041a94.tar.gz
yosys-78ba8b85749abacdf9a6953fd2e6f430b6041a94.tar.bz2
yosys-78ba8b85749abacdf9a6953fd2e6f430b6041a94.zip
Transform all "\\*" identifiers into ID()
Diffstat (limited to 'passes/techmap/nlutmap.cc')
-rw-r--r--passes/techmap/nlutmap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/nlutmap.cc b/passes/techmap/nlutmap.cc
index 0a49dd302..17da70193 100644
--- a/passes/techmap/nlutmap.cc
+++ b/passes/techmap/nlutmap.cc
@@ -85,7 +85,7 @@ struct NlutmapWorker
if (cell->type != ID($lut) || mapped_cells.count(cell))
continue;
- if (GetSize(cell->getPort("\\A")) == lut_size || lut_size == 2)
+ if (GetSize(cell->getPort(ID(\\A))) == lut_size || lut_size == 2)
candidate_ratings[cell] = 0;
for (auto &conn : cell->connections())