diff options
Diffstat (limited to 'gcc/ada/s-pack51.adb')
-rw-r--r-- | gcc/ada/s-pack51.adb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/ada/s-pack51.adb b/gcc/ada/s-pack51.adb index 5c5f926169b..9d71ba01539 100644 --- a/gcc/ada/s-pack51.adb +++ b/gcc/ada/s-pack51.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2005 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2005, 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- -- @@ -79,7 +79,6 @@ package body System.Pack_51 is function Get_51 (Arr : System.Address; N : Natural) return Bits_51 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; @@ -99,7 +98,6 @@ package body System.Pack_51 is procedure Set_51 (Arr : System.Address; N : Natural; E : Bits_51) 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; |