aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug090/crash12.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug090/crash12.vhdl')
-rw-r--r--testsuite/gna/bug090/crash12.vhdl16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/bug090/crash12.vhdl b/testsuite/gna/bug090/crash12.vhdl
new file mode 100644
index 000000000..2724436bb
--- /dev/null
+++ b/testsuite/gna/bug090/crash12.vhdl
@@ -0,0 +1,16 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity clkgen is
+ generic (period : time := 10 ns);
+ port (signal clk : out std_logic := '0');
+end clkgen;
+
+architecture behav of clkgen is
+begin
+ process
+ begin
+ "xxx" . null;
+ end process;
+end behav;
+