diff options
Diffstat (limited to 'gcc/ada/s-fatgen.adb')
-rw-r--r-- | gcc/ada/s-fatgen.adb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/s-fatgen.adb b/gcc/ada/s-fatgen.adb index b100aca6cf1..34e11ebc9f0 100644 --- a/gcc/ada/s-fatgen.adb +++ b/gcc/ada/s-fatgen.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- $Revision: 1.1 $ +-- $Revision$ -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- @@ -40,7 +40,7 @@ -- specialized appropriately, or better still, its generic instantiations -- should be replaced by efficient machine-specific code. -with Ada.Unchecked_Conversion; use Ada; +with Ada.Unchecked_Conversion; with System; package body System.Fat_Gen is @@ -784,11 +784,11 @@ package body System.Fat_Gen is -- This assumes that the range IEEE_Emin - 1 .. IEEE_Emax + 1 -- contains 2**N values, for some N in Natural. - function To_Float is new Unchecked_Conversion (Float_Rep, T); + function To_Float is new Ada.Unchecked_Conversion (Float_Rep, T); type Float_Access is access all T; function To_Address is - new Unchecked_Conversion (Float_Access, System.Address); + new Ada.Unchecked_Conversion (Float_Access, System.Address); XA : constant System.Address := To_Address (Float_Access (X)); |