aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1133
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1133')
-rw-r--r--testsuite/synth/issue1133/foo.vhdl6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/synth/issue1133/foo.vhdl b/testsuite/synth/issue1133/foo.vhdl
index 32a972cda..95dcddf55 100644
--- a/testsuite/synth/issue1133/foo.vhdl
+++ b/testsuite/synth/issue1133/foo.vhdl
@@ -3,7 +3,7 @@ use ieee.std_logic_1164.all;
entity foo is
port (
- input : in std_logic_vector(7 downto 0);
+ inp : in std_logic_vector(7 downto 0);
output_ok : out std_logic_vector(7 downto 0);
output_error : out std_logic_vector(7 downto 0)
);
@@ -16,9 +16,9 @@ architecture foo of foo is
begin
-- This works fine
- null_vector <= input(null_vector'range);
+ null_vector <= inp(null_vector'range);
output_ok <= null_vector & (7 downto 0 => '0');
-- This doesn't
- output_error <= input(-1 downto 0) & (7 downto 0 => '0');
+ output_error <= inp(-1 downto 0) & (7 downto 0 => '0');
end foo;