3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-15 11:45:41 +00:00
This commit is contained in:
Stan Lee 2026-04-16 15:35:11 -07:00
parent 2667070cdd
commit 85fc4fdc0e

View file

@ -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)