mirror of https://github.com/YosysHQ/yosys.git
warn only on _reg
This commit is contained in:
parent
162233a225
commit
3cd792d4d7
|
|
@ -128,7 +128,7 @@ struct RegRenameInstance {
|
|||
|
||||
int wireWidth = regInfo.width;
|
||||
int wireOffset = regInfo.offset;
|
||||
if (wireWidth == 0) {
|
||||
if (wireWidth == 0 && regName.find("_reg") != std::string::npos) {
|
||||
log_warning("Unable to find matching register %s in VCD for cell %s in scope %s\n",
|
||||
regName.c_str(), cellName.c_str(), vcd_scope.c_str());
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in New Issue