aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue948/ent.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue948/ent.vhdl')
-rw-r--r--testsuite/synth/issue948/ent.vhdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/issue948/ent.vhdl b/testsuite/synth/issue948/ent.vhdl
new file mode 100644
index 000000000..a2f7aadb9
--- /dev/null
+++ b/testsuite/synth/issue948/ent.vhdl
@@ -0,0 +1,22 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity ent is
+ port (
+ i : in bit;
+ o : out bit
+ );
+end;
+
+architecture a of ent is
+ signal test : std_logic_vector(7 downto 0);
+ alias a : std_logic_vector(7 downto 0) is test;
+begin
+ process(i)
+ begin
+ if a = x"00" then
+ end if;
+
+ o <= i;
+ end process;
+end;