From 8fd1ead08298af8b02f20ebcb124fe6a137a6026 Mon Sep 17 00:00:00 2001 From: Stephen Williams Date: Wed, 3 Dec 2014 08:27:01 -0800 Subject: [PATCH] Revert "ivl: Allow to initialize variables with other variables (since Verilog-2001)." This reverts commit 610ca95cbede2bc2ebe31ed01b79f4c6b583f496. It turns out that the new feature is actually a bug. --- pform.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pform.cc b/pform.cc index 48b136755..ecb81b721 100644 --- a/pform.cc +++ b/pform.cc @@ -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);