mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-19 20:33:39 +00:00
Renamed SIZE() to GetSize() because of name collision on Win32
This commit is contained in:
parent
c7f5aab625
commit
4569a747f8
48 changed files with 447 additions and 447 deletions
|
@ -412,7 +412,7 @@ static void dfflibmap(RTLIL::Design *design, RTLIL::Module *module)
|
|||
} else
|
||||
if (port.second == 'q') {
|
||||
RTLIL::SigSpec old_sig = cell_connections[std::string("\\") + char(port.second - ('a' - 'A'))];
|
||||
sig = module->addWire(NEW_ID, SIZE(old_sig));
|
||||
sig = module->addWire(NEW_ID, GetSize(old_sig));
|
||||
module->addNotGate(NEW_ID, sig, old_sig);
|
||||
} else
|
||||
if ('a' <= port.second && port.second <= 'z') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue