mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 06:07:26 +02:00
Do not sigmap!
This commit is contained in:
@@ -355,7 +355,7 @@ struct XAigerWriter
|
|||||||
log_error("Connection '%s' on cell '%s' (type '%s') not recognised!\n", log_id(c.first), log_id(cell), log_id(cell->type));
|
log_error("Connection '%s' on cell '%s' (type '%s') not recognised!\n", log_id(c.first), log_id(cell), log_id(cell->type));
|
||||||
|
|
||||||
if (is_input) {
|
if (is_input) {
|
||||||
for (auto b : sigmap(c.second)) {
|
for (auto b : c.second) {
|
||||||
Wire *w = b.wire;
|
Wire *w = b.wire;
|
||||||
if (!w) continue;
|
if (!w) continue;
|
||||||
if (!w->port_output || !cell_known) {
|
if (!w->port_output || !cell_known) {
|
||||||
@@ -381,7 +381,7 @@ struct XAigerWriter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (auto b : sigmap(c.second)) {
|
for (auto b : c.second) {
|
||||||
Wire *w = b.wire;
|
Wire *w = b.wire;
|
||||||
if (!w) continue;
|
if (!w) continue;
|
||||||
input_bits.insert(b);
|
input_bits.insert(b);
|
||||||
|
|||||||
Reference in New Issue
Block a user