aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/lut2mux.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/lut2mux.cc
parent9f98241010481588d643c6d4e24d7b9af2b37c2f (diff)
downloadyosys-78ba8b85749abacdf9a6953fd2e6f430b6041a94.tar.gz
yosys-78ba8b85749abacdf9a6953fd2e6f430b6041a94.tar.bz2
yosys-78ba8b85749abacdf9a6953fd2e6f430b6041a94.zip
Transform all "\\*" identifiers into ID()
Diffstat (limited to 'passes/techmap/lut2mux.cc')
-rw-r--r--passes/techmap/lut2mux.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/techmap/lut2mux.cc b/passes/techmap/lut2mux.cc
index 27c8175dd..dccf335dc 100644
--- a/passes/techmap/lut2mux.cc
+++ b/passes/techmap/lut2mux.cc
@@ -25,9 +25,9 @@ PRIVATE_NAMESPACE_BEGIN
int lut2mux(Cell *cell)
{
- SigSpec sig_a = cell->getPort("\\A");
- SigSpec sig_y = cell->getPort("\\Y");
- Const lut = cell->getParam("\\LUT");
+ SigSpec sig_a = cell->getPort(ID(\\A));
+ SigSpec sig_y = cell->getPort(ID(\\Y));
+ Const lut = cell->getParam(ID(\\LUT));
int count = 1;
if (GetSize(sig_a) == 1)