mirror of https://github.com/YosysHQ/yosys.git
address comments
This commit is contained in:
parent
f14eb4a7bb
commit
f026cebaf6
|
|
@ -82,7 +82,7 @@ struct RegRenamePass : public Pass {
|
||||||
log_error("No VCD file provided. Please provide a VCD file with the -vcd option.\n");
|
log_error("No VCD file provided. Please provide a VCD file with the -vcd option.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Regex to match register output wires
|
// Regex to match registers to output wires
|
||||||
// .*_reg[NUMBER] or .*_reg, can match NUMBER and part before _reg
|
// .*_reg[NUMBER] or .*_reg, can match NUMBER and part before _reg
|
||||||
std::regex reg_regex("(.*)_reg(?:\\[(\\d+)\\])?$");
|
std::regex reg_regex("(.*)_reg(?:\\[(\\d+)\\])?$");
|
||||||
uint32_t count = 0;
|
uint32_t count = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue