From cb1640b87345dc5d2b7ca5d6cbf2246318c77aff Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sat, 16 Nov 2024 21:55:54 -0800 Subject: [PATCH] Need this too --- kernel/yosys_common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kernel/yosys_common.h b/kernel/yosys_common.h index 92b107da9..1320505e7 100644 --- a/kernel/yosys_common.h +++ b/kernel/yosys_common.h @@ -368,6 +368,8 @@ RTLIL::IdString new_id_suffix(std::string file, int line, std::string func, std: module->uniquify(cell_name.str() + "_" + suffix) #define NEW_MEM_ID_SUFFIX(suffix) \ mem.mem ? module->uniquify(mem.mem->name.str() + "_" + suffix) : module->uniquify(string("\\mem_") + suffix) +#define NEW_ABC_ID \ + module->uniquify(IdString("\\boolopt")) // Create a statically allocated IdString object, using for example ID::A or ID($add). //