aboutsummaryrefslogtreecommitdiffstats
path: root/ieee-std_logic_1164.adb
diff options
context:
space:
mode:
Diffstat (limited to 'ieee-std_logic_1164.adb')
-rw-r--r--ieee-std_logic_1164.adb10
1 files changed, 10 insertions, 0 deletions
diff --git a/ieee-std_logic_1164.adb b/ieee-std_logic_1164.adb
index 625888a09..e7150964d 100644
--- a/ieee-std_logic_1164.adb
+++ b/ieee-std_logic_1164.adb
@@ -18,6 +18,7 @@
with Types; use Types;
with Std_Names; use Std_Names;
with Errorout; use Errorout;
+with Std_Package;
package body Ieee.Std_Logic_1164 is
function Skip_Implicit (Decl : Iir) return Iir
@@ -44,6 +45,15 @@ package body Ieee.Std_Logic_1164 is
Decl := Get_Declaration_Chain (Pkg);
+ -- Skip a potential copyright constant.
+ if Decl /= Null_Iir
+ and then Get_Kind (Decl) = Iir_Kind_Constant_Declaration
+ and then (Get_Base_Type (Get_Type (Decl))
+ = Std_Package.String_Type_Definition)
+ then
+ Decl := Get_Chain (Decl);
+ end if;
+
-- The first declaration should be type std_ulogic.
if Decl = Null_Iir
or else Get_Kind (Decl) /= Iir_Kind_Type_Declaration