mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 22:23:23 +00:00
sta: do not add constant driven POs as endpoints
This commit is contained in:
parent
2561121b22
commit
c5e13f412a
1 changed files with 2 additions and 1 deletions
|
@ -136,7 +136,8 @@ struct StaWorker
|
||||||
}
|
}
|
||||||
if (wire->port_output)
|
if (wire->port_output)
|
||||||
for (const auto &b : sigmap(wire))
|
for (const auto &b : sigmap(wire))
|
||||||
endpoints.insert(b);
|
if (b.wire)
|
||||||
|
endpoints.insert(b);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue