Revert "ivl: Allow to initialize variables with other variables (since Verilog-2001)."

This reverts commit 610ca95cbe.
It turns out that the new feature is actually a bug.
This commit is contained in:
Stephen Williams 2014-12-03 08:27:01 -08:00
parent f3ba335493
commit 8fd1ead082
1 changed files with 1 additions and 1 deletions

View File

@ -2239,7 +2239,7 @@ void pform_make_reginit(const struct vlltype&li,
PEIdent*lval = new PEIdent(name);
FILE_NAME(lval, li);
PAssign*ass = new PAssign(lval, expr, generation_flag < GN_VER2001);
PAssign*ass = new PAssign(lval, expr, true);
FILE_NAME(ass, li);
PProcess*top = new PProcess(IVL_PR_INITIAL, ass);
FILE_NAME(top, li);