mirror of https://github.com/YosysHQ/yosys.git
fix
This commit is contained in:
parent
2667070cdd
commit
85fc4fdc0e
|
|
@ -165,7 +165,7 @@ struct RegRenameInstance {
|
|||
for (int i = 0; i < GetSize(oldWire); i++)
|
||||
bit_map[SigBit(oldWire, i)] = SigBit(targetWire, bitIndex + i);
|
||||
|
||||
removeWireCache.insert(oldWire);
|
||||
wireRemoveCache.insert(oldWire);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -183,7 +183,7 @@ struct RegRenameInstance {
|
|||
}
|
||||
|
||||
// Delete the old unused wires
|
||||
module->remove(removeWireCache);
|
||||
module->remove(wireRemoveCache);
|
||||
}
|
||||
|
||||
void process_all(dict<std::pair<std::string, std::string>, int> &vcd_reg_widths)
|
||||
|
|
|
|||
Loading…
Reference in New Issue