mirror of https://github.com/YosysHQ/yosys.git
Fix "scc" call inside abc9 to consider all wires
This commit is contained in:
parent
f3e150d9a5
commit
5a4011e8c9
|
@ -75,7 +75,7 @@ inline std::string remap_name(RTLIL::IdString abc_name)
|
||||||
|
|
||||||
void handle_loops(RTLIL::Design *design)
|
void handle_loops(RTLIL::Design *design)
|
||||||
{
|
{
|
||||||
Pass::call(design, "scc -set_attr abc_scc_id {}");
|
Pass::call(design, "scc -set_attr abc_scc_id {} % w:*");
|
||||||
|
|
||||||
// For every unique SCC found, (arbitrarily) find the first
|
// For every unique SCC found, (arbitrarily) find the first
|
||||||
// cell in the component, and select (and mark) all its output
|
// cell in the component, and select (and mark) all its output
|
||||||
|
|
Loading…
Reference in New Issue