aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-ieee-std_logic_1164.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-12-24 18:00:24 +0100
committerTristan Gingold <tgingold@free.fr>2019-12-24 18:00:24 +0100
commit6ffcbcbcf7c34ab6d1f71a73173b0af271892901 (patch)
tree7a1e7d9025df590c32171e31913e89541843c229 /src/vhdl/vhdl-ieee-std_logic_1164.adb
parent1ef6a4011c1c207c7a295148f09b3f403fd87d56 (diff)
downloadghdl-6ffcbcbcf7c34ab6d1f71a73173b0af271892901.tar.gz
ghdl-6ffcbcbcf7c34ab6d1f71a73173b0af271892901.tar.bz2
ghdl-6ffcbcbcf7c34ab6d1f71a73173b0af271892901.zip
vhdl: recognize ieee.std_logic_1164.is_x.
Diffstat (limited to 'src/vhdl/vhdl-ieee-std_logic_1164.adb')
-rw-r--r--src/vhdl/vhdl-ieee-std_logic_1164.adb6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-ieee-std_logic_1164.adb b/src/vhdl/vhdl-ieee-std_logic_1164.adb
index 431b5bf6a..9c123d16a 100644
--- a/src/vhdl/vhdl-ieee-std_logic_1164.adb
+++ b/src/vhdl/vhdl-ieee-std_logic_1164.adb
@@ -271,6 +271,9 @@ package body Vhdl.Ieee.Std_Logic_1164 is
when Name_Op_Condition =>
Predefined :=
Iir_Predefined_Ieee_1164_Condition_Operator;
+ when Name_Is_X =>
+ Predefined :=
+ Iir_Predefined_Ieee_1164_Scalar_Is_X;
when others =>
Predefined := Iir_Predefined_None;
end case;
@@ -301,6 +304,9 @@ package body Vhdl.Ieee.Std_Logic_1164 is
when Name_Or =>
Predefined :=
Iir_Predefined_Ieee_1164_Vector_Or_Reduce;
+ when Name_Is_X =>
+ Predefined :=
+ Iir_Predefined_Ieee_1164_Scalar_Is_X;
when others =>
Predefined := Iir_Predefined_None;
end case;