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:
parent
4e96c84ec6
commit
89ef83c597
|
|
@ -1472,6 +1472,8 @@ skip_endmodule:
|
|||
rhs = LookupObject(assignname, CurrentCell);
|
||||
*aptr = '[';
|
||||
}
|
||||
else
|
||||
strcpy(assignroot, nexttok);
|
||||
}
|
||||
else {
|
||||
j = -1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue