aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/vhdl-post_sems.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-28 18:31:29 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-28 18:31:29 +0100
commite5ce655bd182daaddb5f685f077cb69a416d34c4 (patch)
treeeb8aba257717258c29b5ea98a8d35fe31a983681 /src/vhdl/vhdl-post_sems.adb
parent5837c03fe6704eff8ba531aafecfd7323ff353c8 (diff)
downloadghdl-e5ce655bd182daaddb5f685f077cb69a416d34c4.tar.gz
ghdl-e5ce655bd182daaddb5f685f077cb69a416d34c4.tar.bz2
ghdl-e5ce655bd182daaddb5f685f077cb69a416d34c4.zip
vhdl: recognize reduce functions in std_logic_misc.
Diffstat (limited to 'src/vhdl/vhdl-post_sems.adb')
-rw-r--r--src/vhdl/vhdl-post_sems.adb3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-post_sems.adb b/src/vhdl/vhdl-post_sems.adb
index 8924a1d45..5477a3136 100644
--- a/src/vhdl/vhdl-post_sems.adb
+++ b/src/vhdl/vhdl-post_sems.adb
@@ -24,6 +24,7 @@ with Vhdl.Ieee.Numeric;
with Vhdl.Ieee.Math_Real;
with Vhdl.Ieee.Std_Logic_Unsigned;
with Vhdl.Ieee.Std_Logic_Arith;
+with Vhdl.Ieee.Std_Logic_Misc;
with Flags; use Flags;
package body Vhdl.Post_Sems is
@@ -70,6 +71,8 @@ package body Vhdl.Post_Sems is
(Lib_Unit, Vhdl.Ieee.Std_Logic_Unsigned.Pkg_Signed);
when Name_Std_Logic_Arith =>
Vhdl.Ieee.Std_Logic_Arith.Extract_Declarations (Lib_Unit);
+ when Name_Std_Logic_Misc =>
+ Vhdl.Ieee.Std_Logic_Misc.Extract_Declarations (Lib_Unit);
when others =>
null;
end case;