3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-05-12 18:24:44 +00:00

Need this too

This commit is contained in:
Akash Levy 2024-11-16 21:55:54 -08:00
parent df0ce40841
commit cb1640b873

View file

@ -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).
//