diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-11-12 20:07:15 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-11-12 20:36:03 +0100 |
commit | b4490abb58f7a4d1f13900bd3a6c39f64d4dab7f (patch) | |
tree | 28497a3876fcc4503fbedb5834be6dfe28a074fd /testsuite/synth/bug02/repro1.vhdl | |
parent | 97c875c15734f991e1c7b190385def8f0b587538 (diff) | |
download | ghdl-b4490abb58f7a4d1f13900bd3a6c39f64d4dab7f.tar.gz ghdl-b4490abb58f7a4d1f13900bd3a6c39f64d4dab7f.tar.bz2 ghdl-b4490abb58f7a4d1f13900bd3a6c39f64d4dab7f.zip |
testsuite/synth: add tests for previous commit.
Diffstat (limited to 'testsuite/synth/bug02/repro1.vhdl')
-rw-r--r-- | testsuite/synth/bug02/repro1.vhdl | 22 |
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; |