mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
bugpoint: avoid infinite loop between -connections and -wires.
Fixes #3113.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user