summaryrefslogtreecommitdiff
path: root/testsuite/gna/bug017/if1.vhdl
diff options
context:
space:
mode:
authorTristan Gingold2015-09-02 18:21:33 +0200
committerTristan Gingold2015-09-02 18:21:33 +0200
commita779d6b3b5f10cbee6690ae4ff7aa43b65caf5e3 (patch)
treec850005a41589ef82fc98abaac904c415acd9493 /testsuite/gna/bug017/if1.vhdl
parent133686da496f0592da76a45361e70ac8d6c482ea (diff)
downloadghdl-a779d6b3b5f10cbee6690ae4ff7aa43b65caf5e3.tar.gz
ghdl-a779d6b3b5f10cbee6690ae4ff7aa43b65caf5e3.tar.bz2
ghdl-a779d6b3b5f10cbee6690ae4ff7aa43b65caf5e3.zip
Add bug017.
Diffstat (limited to 'testsuite/gna/bug017/if1.vhdl')
-rw-r--r--testsuite/gna/bug017/if1.vhdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/gna/bug017/if1.vhdl b/testsuite/gna/bug017/if1.vhdl
new file mode 100644
index 0000000..57554c7
--- /dev/null
+++ b/testsuite/gna/bug017/if1.vhdl
@@ -0,0 +1,22 @@
+entity if1 is
+end;
+
+architecture behav of if1 is
+begin
+ process
+ variable i : natural := 0;
+ begin
+ report "hello";
+ loop
+ if i = 10 then
+ exit;
+ else
+ report "hello2";
+ end if;
+ i := i + 1;
+ end loop;
+ report "SUCCESS";
+ wait;
+ end process;
+
+end behav;