X-Git-Url: http://git.sourceforge.jp/view?a=blobdiff_plain;f=gcc%2Fada%2Fs-pack21.adb;h=877259ec9598d1cff871d49443c5c97145297afb;hb=57993a5368c6b04d4b89553618030a8c6dd222b5;hp=d29d6624541cef662445869cb7fba47893f37d57;hpb=c32d045231e086867f117700fbe01dbbbce3ea14;p=pf3gnuchains%2Fgcc-fork.git diff --git a/gcc/ada/s-pack21.adb b/gcc/ada/s-pack21.adb index d29d6624541..877259ec959 100644 --- a/gcc/ada/s-pack21.adb +++ b/gcc/ada/s-pack21.adb @@ -1,14 +1,12 @@ ------------------------------------------------------------------------------ -- -- --- GNAT RUNTIME COMPONENTS -- +-- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 2 1 -- -- -- -- B o d y -- -- -- --- $Revision: 1.4 $ --- -- --- Copyright (C) 1992-1999 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2007, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -18,8 +16,8 @@ -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- --- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- --- MA 02111-1307, USA. -- +-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- +-- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- @@ -29,13 +27,13 @@ -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- --- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). -- +-- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with System.Storage_Elements; with System.Unsigned_Types; -with Unchecked_Conversion; +with Ada.Unchecked_Conversion; package body System.Pack_21 is @@ -73,7 +71,7 @@ package body System.Pack_21 is type Cluster_Ref is access Cluster; function To_Ref is new - Unchecked_Conversion (System.Address, Cluster_Ref); + Ada.Unchecked_Conversion (System.Address, Cluster_Ref); ------------ -- Get_21 -- @@ -81,7 +79,6 @@ package body System.Pack_21 is function Get_21 (Arr : System.Address; N : Natural) return Bits_21 is C : constant Cluster_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8)); - begin case N07 (Uns (N) mod 8) is when 0 => return C.E0; @@ -101,7 +98,6 @@ package body System.Pack_21 is procedure Set_21 (Arr : System.Address; N : Natural; E : Bits_21) is C : constant Cluster_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8)); - begin case N07 (Uns (N) mod 8) is when 0 => C.E0 := E;