mirror of https://github.com/YosysHQ/yosys.git
Remove left-over log_ping debug commands.. oops.
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
7ea8833676
commit
93985d91b1
|
@ -1554,20 +1554,16 @@ struct VerificSvaImporter
|
||||||
parser_error(stringf("Failed to parse SVA clocking"), root);
|
parser_error(stringf("Failed to parse SVA clocking"), root);
|
||||||
|
|
||||||
if (mode_assert || mode_assume) {
|
if (mode_assert || mode_assume) {
|
||||||
log_ping();
|
|
||||||
reject_bit = module->Not(NEW_ID, parse_expression(root->GetInput()));
|
reject_bit = module->Not(NEW_ID, parse_expression(root->GetInput()));
|
||||||
} else {
|
} else {
|
||||||
log_ping();
|
|
||||||
accept_bit = parse_expression(root->GetInput());
|
accept_bit = parse_expression(root->GetInput());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (mode_assert || mode_assume) {
|
if (mode_assert || mode_assume) {
|
||||||
log_ping();
|
|
||||||
parse_property(clocking.body_net, nullptr, &reject_bit);
|
parse_property(clocking.body_net, nullptr, &reject_bit);
|
||||||
} else {
|
} else {
|
||||||
log_ping();
|
|
||||||
parse_property(clocking.body_net, &accept_bit, nullptr);
|
parse_property(clocking.body_net, &accept_bit, nullptr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue