mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-23 09:05:32 +00:00
bugpoint: avoid infinite loop between -connections and -wires.
Fixes #3113.
This commit is contained in:
parent
48ed6d998b
commit
4f1d62d9b2
1 changed files with 1 additions and 1 deletions
|
@ -377,7 +377,7 @@ struct BugpointPass : public Pass {
|
|||
if (wire->get_bool_attribute(ID::bugpoint_keep))
|
||||
continue;
|
||||
|
||||
if (wire->name.begins_with("$delete_wire"))
|
||||
if (wire->name.begins_with("$delete_wire") || wire->name.begins_with("$auto$bugpoint"))
|
||||
continue;
|
||||
|
||||
if (index++ == seed)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue