aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-types.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/synth/synth-types.adb')
-rw-r--r--src/synth/synth-types.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/synth/synth-types.adb b/src/synth/synth-types.adb
index 88542ab6b..f1478fb18 100644
--- a/src/synth/synth-types.adb
+++ b/src/synth/synth-types.adb
@@ -20,7 +20,7 @@
with Types; use Types;
with Vhdl.Std_Package;
-with Ieee.Std_Logic_1164;
+with Vhdl.Ieee.Std_Logic_1164;
with Iirs_Utils; use Iirs_Utils;
with Simul.Environments; use Simul.Environments;
@@ -30,8 +30,8 @@ with Errorout; use Errorout;
package body Synth.Types is
function Is_Bit_Type (Atype : Iir) return Boolean is
begin
- return Atype = Ieee.Std_Logic_1164.Std_Ulogic_Type
- or else Atype = Ieee.Std_Logic_1164.Std_Logic_Type
+ return Atype = Vhdl.Ieee.Std_Logic_1164.Std_Ulogic_Type
+ or else Atype = Vhdl.Ieee.Std_Logic_1164.Std_Logic_Type
or else Atype = Vhdl.Std_Package.Boolean_Type_Definition
or else Atype = Vhdl.Std_Package.Bit_Type_Definition;
end Is_Bit_Type;