diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-05-05 07:49:25 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-05-05 08:05:11 +0200 |
commit | 85d360929d13e6b0bcb082f144883a43f402ce22 (patch) | |
tree | f8d8135e12393588b7704318f26304dfab272658 /src/vhdl/ieee-numeric.adb | |
parent | 3c48cc2a70085eef63718e622b3d1a7b75a2f36f (diff) | |
download | ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.gz ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.tar.bz2 ghdl-85d360929d13e6b0bcb082f144883a43f402ce22.zip |
vhdl: move std_standard package to vhdl child.
Diffstat (limited to 'src/vhdl/ieee-numeric.adb')
-rw-r--r-- | src/vhdl/ieee-numeric.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/vhdl/ieee-numeric.adb b/src/vhdl/ieee-numeric.adb index d87cb1898..c6dfcb17a 100644 --- a/src/vhdl/ieee-numeric.adb +++ b/src/vhdl/ieee-numeric.adb @@ -17,7 +17,7 @@ -- 02111-1307, USA. with Types; use Types; -with Std_Package; +with Vhdl.Std_Package; with Std_Names; use Std_Names; with Errorout; use Errorout; with Ieee.Std_Logic_1164; @@ -88,10 +88,10 @@ package body Ieee.Numeric is elsif Arg_Type = Unsigned_Type then Sign := Type_Unsigned; Kind := Arg_Vect; - elsif Arg_Type = Std_Package.Integer_Subtype_Definition then + elsif Arg_Type = Vhdl.Std_Package.Integer_Subtype_Definition then Sign := Type_Signed; Kind := Arg_Scal; - elsif Arg_Type = Std_Package.Natural_Subtype_Definition then + elsif Arg_Type = Vhdl.Std_Package.Natural_Subtype_Definition then Sign := Type_Unsigned; Kind := Arg_Scal; elsif Arg_Type = Ieee.Std_Logic_1164.Std_Ulogic_Type then @@ -157,7 +157,7 @@ package body Ieee.Numeric is 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) + = Vhdl.Std_Package.String_Type_Definition) then Decl := Get_Chain (Decl); end if; |