From e5891f3900f5e58df37d32c2c18a0f339c094cf4 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Thu, 17 Jun 2021 22:55:04 +0200 Subject: Reduced testcase. --- testsuite/pyunit/SimplePackage.vhdl | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/testsuite/pyunit/SimplePackage.vhdl b/testsuite/pyunit/SimplePackage.vhdl index 0b93adf96..0571e7060 100644 --- a/testsuite/pyunit/SimplePackage.vhdl +++ b/testsuite/pyunit/SimplePackage.vhdl @@ -3,20 +3,11 @@ use ieee.std_logic_1164.all; use ieee.numeric_std.all; package pack_1 is - constant const_1 : boolean; + constant const_1 : boolean := false; - type matrix is array(natural range <>, natural range <>) of std_logic; - - subtype matrix8x8 is matrix(7 downto 0, 7 downto 0); - - function func1(value : unsigned) return natural; end package; package body pack_1 is constant const_1 : boolean := true; - function func1(value : unsigned) return natural is - begin - return to_integer(value); - end function; end package body; -- cgit v1.2.3