aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/s-pack36.adb
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/s-pack36.adb')
-rw-r--r--gcc/ada/s-pack36.adb6
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/ada/s-pack36.adb b/gcc/ada/s-pack36.adb
index 447a0e2b9d0..c49b7527710 100644
--- a/gcc/ada/s-pack36.adb
+++ b/gcc/ada/s-pack36.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- --
@@ -92,7 +92,6 @@ package body System.Pack_36 is
function Get_36 (Arr : System.Address; N : Natural) return Bits_36 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;
@@ -112,7 +111,6 @@ package body System.Pack_36 is
function GetU_36 (Arr : System.Address; N : Natural) return Bits_36 is
C : constant ClusterU_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8));
-
begin
case N07 (Uns (N) mod 8) is
when 0 => return C.E0;
@@ -132,7 +130,6 @@ package body System.Pack_36 is
procedure Set_36 (Arr : System.Address; N : Natural; E : Bits_36) 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;
@@ -152,7 +149,6 @@ package body System.Pack_36 is
procedure SetU_36 (Arr : System.Address; N : Natural; E : Bits_36) is
C : constant ClusterU_Ref := To_Ref (Arr + Bits * Ofs (Uns (N) / 8));
-
begin
case N07 (Uns (N) mod 8) is
when 0 => C.E0 := E;