aboutsummaryrefslogtreecommitdiffstats
path: root/src/std_names.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-01-01 11:45:19 +0100
committerTristan Gingold <tgingold@free.fr>2021-01-01 14:15:40 +0100
commit8c1ae5a3a429dbbbc73a8547f021b8cf6470130b (patch)
tree176c628e65568eb09a92fbfae5bdfcd8abd6c548 /src/std_names.adb
parent1bb3b9066a16a0ace6ac2195f7a500896259fb03 (diff)
downloadghdl-8c1ae5a3a429dbbbc73a8547f021b8cf6470130b.tar.gz
ghdl-8c1ae5a3a429dbbbc73a8547f021b8cf6470130b.tar.bz2
ghdl-8c1ae5a3a429dbbbc73a8547f021b8cf6470130b.zip
vhdl: recognize ieee.numeric_std_unsigned. For #1572
Diffstat (limited to 'src/std_names.adb')
-rw-r--r--src/std_names.adb23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/std_names.adb b/src/std_names.adb
index 0545fdbaa..e98df740a 100644
--- a/src/std_names.adb
+++ b/src/std_names.adb
@@ -615,17 +615,18 @@ package body Std_Names is
Def ("built_in", Name_Built_In);
Def ("none", Name_None);
- Def ("ieee", Name_Ieee);
- Def ("std_logic_1164", Name_Std_Logic_1164);
- Def ("vital_timing", Name_VITAL_Timing);
- Def ("numeric_std", Name_Numeric_Std);
- Def ("numeric_bit", Name_Numeric_Bit);
- Def ("std_logic_arith", Name_Std_Logic_Arith);
- Def ("std_logic_signed", Name_Std_Logic_Signed);
- Def ("std_logic_unsigned", Name_Std_Logic_Unsigned);
- Def ("std_logic_textio", Name_Std_Logic_Textio);
- Def ("std_logic_misc", Name_Std_Logic_Misc);
- Def ("math_real", Name_Math_Real);
+ Def ("ieee", Name_Ieee);
+ Def ("std_logic_1164", Name_Std_Logic_1164);
+ Def ("vital_timing", Name_VITAL_Timing);
+ Def ("numeric_std", Name_Numeric_Std);
+ Def ("numeric_bit", Name_Numeric_Bit);
+ Def ("numeric_std_unsigned", Name_Numeric_Std_Unsigned);
+ Def ("std_logic_arith", Name_Std_Logic_Arith);
+ Def ("std_logic_signed", Name_Std_Logic_Signed);
+ Def ("std_logic_unsigned", Name_Std_Logic_Unsigned);
+ Def ("std_logic_textio", Name_Std_Logic_Textio);
+ Def ("std_logic_misc", Name_Std_Logic_Misc);
+ Def ("math_real", Name_Math_Real);
Def ("std_ulogic", Name_Std_Ulogic);
Def ("std_ulogic_vector", Name_Std_Ulogic_Vector);