aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1007/test_wrapper.vhdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-12-03 07:54:27 +0100
committerTristan Gingold <tgingold@free.fr>2019-12-03 07:54:27 +0100
commitf342fd4b064953b35ca94808bda7670544ef2217 (patch)
treece0dbdf6a11cbdfdd3e4f816224eed5e00ee04dc /testsuite/synth/issue1007/test_wrapper.vhdl
parentd6b2b4441e2db58cba4a104b4e7873c70ffdfda6 (diff)
downloadghdl-f342fd4b064953b35ca94808bda7670544ef2217.tar.gz
ghdl-f342fd4b064953b35ca94808bda7670544ef2217.tar.bz2
ghdl-f342fd4b064953b35ca94808bda7670544ef2217.zip
testsuite: add test for #1007
Diffstat (limited to 'testsuite/synth/issue1007/test_wrapper.vhdl')
-rw-r--r--testsuite/synth/issue1007/test_wrapper.vhdl28
1 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/synth/issue1007/test_wrapper.vhdl b/testsuite/synth/issue1007/test_wrapper.vhdl
new file mode 100644
index 000000000..5fced5cb8
--- /dev/null
+++ b/testsuite/synth/issue1007/test_wrapper.vhdl
@@ -0,0 +1,28 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity test_wrapper is
+ port(
+ val1_out : out std_logic;
+ val2_out : out std_logic
+ );
+end test_wrapper;
+
+architecture rtl of test_wrapper is
+begin
+ entity_0 : entity work.test_entity
+ generic map (
+ DO_GEN => true
+ )
+ port map (
+ val_out => val1_out
+ );
+
+ entity_1 : entity work.test_entity
+ generic map (
+ DO_GEN => false
+ )
+ port map (
+ val_out => val2_out
+ );
+end;