mirror of https://github.com/YosysHQ/yosys.git
Fix erroneous ifndef-NDEBUG in verific.cc
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
6b156beda1
commit
27d59dc055
|
@ -1789,10 +1789,8 @@ struct VerificExtNets
|
|||
new_net = new Net(name.c_str());
|
||||
nl->Add(new_net);
|
||||
|
||||
#ifndef NDEBUG
|
||||
Net *n = route_up(new_net, port->IsOutput(), ca_nl, ca_net);
|
||||
Net *n YS_ATTRIBUTE(unused) = route_up(new_net, port->IsOutput(), ca_nl, ca_net);
|
||||
log_assert(n == ca_net);
|
||||
#endif
|
||||
}
|
||||
|
||||
if (verific_verbose)
|
||||
|
|
Loading…
Reference in New Issue