mirror of https://github.com/YosysHQ/yosys.git
Update frontends/verific/verific.cc
Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
parent
4d110a96bf
commit
89a8250ae8
|
|
@ -2823,7 +2823,12 @@ struct VerificExtNets
|
|||
Net *new_net = new Net(name.c_str());
|
||||
nl->Add(new_net);
|
||||
|
||||
if (!port->IsInput())
|
||||
if (port->IsInput())
|
||||
log_warning("Localizing external package/global net reference '%s.%s' on %s.%s; "
|
||||
"reads from the package/global object will return an undriven (floating) value.\n",
|
||||
get_full_netlist_name(net->Owner()).c_str(), net->Name(),
|
||||
get_full_netlist_name(nl).c_str(), port->Name());
|
||||
else
|
||||
log_warning("Localizing external package/global net reference '%s.%s' on %s.%s; "
|
||||
"writes to the package/global object are not propagated.\n",
|
||||
get_full_netlist_name(net->Owner()).c_str(), net->Name(),
|
||||
|
|
|
|||
Loading…
Reference in New Issue