Revert: Back port variable initialization fix from development.

It turns out that the new feature was actually a bug.
This commit is contained in:
Cary R 2014-12-04 16:47:26 -08:00
parent 0bccde2e17
commit 7d042accfd
1 changed files with 1 additions and 1 deletions

View File

@ -1449,7 +1449,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);