aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/bug02/repro1.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/bug02/repro1.vhdl')
-rw-r--r--testsuite/synth/bug02/repro1.vhdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/bug02/repro1.vhdl b/testsuite/synth/bug02/repro1.vhdl
new file mode 100644
index 000000000..f138f17dc
--- /dev/null
+++ b/testsuite/synth/bug02/repro1.vhdl
@@ -0,0 +1,22 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity repro1 is
+ port (clk : std_logic;
+ o1 : out std_logic;
+ o2 : out std_logic);
+end repro1;
+
+architecture behav of repro1 is
+ signal v : natural range 0 to 0;
+begin
+ process (clk)
+ begin
+ if rising_edge(clk) then
+ o1 <= '1';
+ v <= 0;
+ end if;
+ end process;
+
+ o2 <= '1' when v = 0 else '0';
+end behav;