mirror of
https://github.com/verilator/verilator.git
synced 2026-09-07 01:52:17 +02:00
Fix implying dotted wire names
This commit is contained in:
+1
-1
@@ -805,7 +805,7 @@ private:
|
||||
if (nodep->castDot()) { // Not creating a simple implied type,
|
||||
// and implying something else would just confuse later errors
|
||||
}
|
||||
if (nodep->castVarRef() || (nodep->castParseRef() && nodep->castParseRef()->start())) {
|
||||
else if (nodep->castVarRef() || (nodep->castParseRef() && nodep->castParseRef()->start())) {
|
||||
// To prevent user errors, we should only do single bit
|
||||
// implicit vars, however some netlists (MIPS) expect single
|
||||
// bit implicit wires to get created with range 0:0 etc.
|
||||
|
||||
Reference in New Issue
Block a user