mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-26 02:25:35 +00:00
Fix nasty bug in Verific bindings
This commit is contained in:
parent
a381188b92
commit
b92ff2706e
1 changed files with 1 additions and 1 deletions
|
@ -912,7 +912,7 @@ struct VerificImporter
|
|||
|
||||
if (found_new_net)
|
||||
{
|
||||
RTLIL::IdString wire_name = module->uniquify(mode_names || netbus->IsUserDeclared() ? RTLIL::escape_id(net->Name()) : NEW_ID);
|
||||
RTLIL::IdString wire_name = module->uniquify(mode_names || netbus->IsUserDeclared() ? RTLIL::escape_id(netbus->Name()) : NEW_ID);
|
||||
|
||||
if (verbose)
|
||||
log(" importing netbus %s as %s.\n", netbus->Name(), log_id(wire_name));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue