Corrected an error in the verilog parser that incorrectly handles

the syntax "assign a = b" when both a and b are vectors (but no
vector delimiters appear in the assignment).
This commit is contained in:
Tim Edwards 2022-04-15 14:13:11 -04:00
parent 4e96c84ec6
commit 89ef83c597
1 changed files with 2 additions and 0 deletions

View File

@ -1472,6 +1472,8 @@ skip_endmodule:
rhs = LookupObject(assignname, CurrentCell);
*aptr = '[';
}
else
strcpy(assignroot, nexttok);
}
else {
j = -1;