diff options
Diffstat (limited to 'testsuite/gna/issue1387/repro1.vhdl')
-rw-r--r-- | testsuite/gna/issue1387/repro1.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue1387/repro1.vhdl b/testsuite/gna/issue1387/repro1.vhdl new file mode 100644 index 000000000..4422c81cc --- /dev/null +++ b/testsuite/gna/issue1387/repro1.vhdl @@ -0,0 +1,15 @@ +package support_pkg is + function ">" ( l,r : integer ) return bit; +end support_pkg; + +use work.support_pkg.all; + +entity repro1 is +end; + +architecture behav of repro1 is + signal sov : bit_vector(0 to 21); +begin + cfg : if sov'length > 1 generate + end generate; +end; |