OSDN Git Service

2010-01-26 Robert Dewar <dewar@adacore.com>
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-nuflra.adb
index 64f4c36..7e6323b 100644 (file)
@@ -6,25 +6,23 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---           Copyright (C) 1992-2005 Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2009, 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- --
--- ware  Foundation;  either version 2,  or (at your option) any later ver- --
+-- ware  Foundation;  either version 3,  or (at your option) any later ver- --
 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
--- 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.                                                      --
+-- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
 --                                                                          --
--- As a special exception,  if other files  instantiate  generics from this --
--- unit, or you link  this unit with other files  to produce an executable, --
--- this  unit  does not  by itself cause  the resulting  executable  to  be --
--- covered  by the  GNU  General  Public  License.  This exception does not --
--- however invalidate  any other reasons why  the executable file  might be --
--- covered by the  GNU Public License.                                      --
+-- As a special exception under Section 7 of GPL version 3, you are granted --
+-- additional permissions described in the GCC Runtime Library Exception,   --
+-- version 3.1, as published by the Free Software Foundation.               --
+--                                                                          --
+-- You should have received a copy of the GNU General Public License and    --
+-- a copy of the GCC Runtime Library Exception along with this program;     --
+-- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
+-- <http://www.gnu.org/licenses/>.                                          --
 --                                                                          --
 -- GNAT was originally developed  by the GNAT team at  New York University. --
 -- Extensive contributions were provided by Ada Core Technologies Inc.      --
@@ -55,7 +53,7 @@ package body Ada.Numerics.Float_Random is
    -- Local Subprograms --
    -----------------------
 
-   procedure Euclid (P, Q : in Int; X, Y : out Int; GCD : out Int);
+   procedure Euclid (P, Q : Int; X, Y : out Int; GCD : out Int);
 
    function  Euclid (P, Q : Int) return Int;
 
@@ -65,24 +63,24 @@ package body Ada.Numerics.Float_Random is
    -- Euclid --
    ------------
 
-   procedure Euclid (P, Q : in Int; X, Y : out Int; GCD : out Int) is
+   procedure Euclid (P, Q : Int; X, Y : out Int; GCD : out Int) is
 
       XT : Int := 1;
       YT : Int := 0;
 
       procedure Recur
-        (P,  Q  : in Int;                 --  a (i-1), a (i)
-         X,  Y  : in Int;                 --  x (i),   y (i)
+        (P,  Q  : Int;                    --  a (i-1), a (i)
+         X,  Y  : Int;                    --  x (i),   y (i)
          XP, YP : in out Int;             --  x (i-1), y (i-1)
          GCD    : out Int);
 
       procedure Recur
-        (P,  Q  : in Int;
-         X,  Y  : in Int;
+        (P,  Q  : Int;
+         X,  Y  : Int;
          XP, YP : in out Int;
          GCD    : out Int)
       is
-         Quo : Int  := P / Q;             --  q <-- |_ a (i-1) / a (i) _|
+         Quo : Int := P / Q;              --  q <-- |_ a (i-1) / a (i) _|
          XT  : Int := X;                  --  x (i)
          YT  : Int := Y;                  --  y (i)
 
@@ -117,7 +115,7 @@ package body Ada.Numerics.Float_Random is
 
    function Euclid (P, Q : Int) return Int is
       X, Y, GCD : Int;
-
+      pragma Unreferenced (Y, GCD);
    begin
       Euclid (P, Q, X, Y, GCD);
       return X;
@@ -156,7 +154,7 @@ package body Ada.Numerics.Float_Random is
 
    --  Version that works from given initiator value
 
-   procedure Reset (Gen : in Generator; Initiator : in Integer) is
+   procedure Reset (Gen : Generator; Initiator : Integer) is
       Genp   : constant Pointer := Gen.Gen_State'Unrestricted_Access;
       X1, X2 : Int;
 
@@ -164,7 +162,7 @@ package body Ada.Numerics.Float_Random is
       X1 := 2 + Int (Initiator) mod (K1 - 3);
       X2 := 2 + Int (Initiator) mod (K2 - 3);
 
-      --  Eliminate effects of small Initiators.
+      --  Eliminate effects of small initiators
 
       for J in 1 .. 5 loop
          X1 := Square_Mod_N (X1, K1);
@@ -227,7 +225,7 @@ package body Ada.Numerics.Float_Random is
    -- Save --
    ----------
 
-   procedure Save (Gen : in Generator; To_State : out State) is
+   procedure Save (Gen : Generator; To_State : out State) is
    begin
       To_State := Gen.Gen_State;
    end Save;
@@ -299,7 +297,7 @@ package body Ada.Numerics.Float_Random is
       Outs.X   := Euclid (Outs.P, Outs.Q);
       Outs.Scl := 1.0 / (Flt (Outs.P) * Flt (Outs.Q));
 
-      --  Now do *some* sanity checks.
+      --  Now do *some* sanity checks
 
       if Outs.Q < 31 or else Outs.P < 31
         or else Outs.X1 not in 2 .. Outs.P - 1