From 7d042accfd56c5d7b6343ae7f0b1214b3a276a1d Mon Sep 17 00:00:00 2001 From: Cary R Date: Thu, 4 Dec 2014 16:47:26 -0800 Subject: [PATCH] Revert: Back port variable initialization fix from development. It turns out that the new feature was actually a bug. --- pform.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pform.cc b/pform.cc index 4a543f8b1..c3bc4262c 100644 --- a/pform.cc +++ b/pform.cc @@ -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);