s-valllu.adb, [...]: Fix typos.
authorArnaud Charlet <charlet@adacore.com>
Tue, 20 Oct 2015 12:40:36 +0000 (12:40 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Tue, 20 Oct 2015 12:40:36 +0000 (14:40 +0200)
2015-10-20  Arnaud Charlet  <charlet@adacore.com>

* s-valllu.adb, sem_ch3.adb, layout.adb, a-crbtgo.adb, exp_ch9.adb,
make.adb, g-diopit.adb, s-valuns.adb, sem_ch9.adb, sem_ch10.adb,
sem_ch12.adb, a-tifiio.adb, g-dynhta.adb, uintp.adb,
sem_util.adb, sem_res.adb, s-htable.adb, exp_tss.adb, s-soflin.ads,
exp_ch6.adb, sem_ch6.adb, a-rbtgbo.adb, par-ch12.adb, sem_ch8.adb,
sem_eval.adb, mdll.adb, par-ch5.adb, s-poosiz.adb, sem_ch4.adb,
a-ngelfu.adb, s-taspri-solaris.ads, a-cforse.adb: Fix typos.

From-SVN: r229077

33 files changed:
gcc/ada/ChangeLog
gcc/ada/a-cforse.adb
gcc/ada/a-crbtgo.adb
gcc/ada/a-ngelfu.adb
gcc/ada/a-rbtgbo.adb
gcc/ada/a-tifiio.adb
gcc/ada/exp_ch6.adb
gcc/ada/exp_ch9.adb
gcc/ada/exp_tss.adb
gcc/ada/g-diopit.adb
gcc/ada/g-dynhta.adb
gcc/ada/layout.adb
gcc/ada/make.adb
gcc/ada/mdll.adb
gcc/ada/par-ch12.adb
gcc/ada/par-ch5.adb
gcc/ada/s-htable.adb
gcc/ada/s-poosiz.adb
gcc/ada/s-soflin.ads
gcc/ada/s-taspri-solaris.ads
gcc/ada/s-valllu.adb
gcc/ada/s-valuns.adb
gcc/ada/sem_ch10.adb
gcc/ada/sem_ch12.adb
gcc/ada/sem_ch3.adb
gcc/ada/sem_ch4.adb
gcc/ada/sem_ch6.adb
gcc/ada/sem_ch8.adb
gcc/ada/sem_ch9.adb
gcc/ada/sem_eval.adb
gcc/ada/sem_res.adb
gcc/ada/sem_util.adb
gcc/ada/uintp.adb

index acfc2e481035e3e8cdac20d20f561675b621de20..3e0d760a65978d700b0cf5fe67220aee791d7090 100644 (file)
@@ -1,3 +1,13 @@
+2015-10-20  Arnaud Charlet  <charlet@adacore.com>
+
+       * s-valllu.adb, sem_ch3.adb, layout.adb, a-crbtgo.adb, exp_ch9.adb,
+       make.adb, g-diopit.adb, s-valuns.adb, sem_ch9.adb, sem_ch10.adb,
+       sem_ch12.adb, a-tifiio.adb, g-dynhta.adb, uintp.adb,
+       sem_util.adb, sem_res.adb, s-htable.adb, exp_tss.adb, s-soflin.ads,
+       exp_ch6.adb, sem_ch6.adb, a-rbtgbo.adb, par-ch12.adb, sem_ch8.adb,
+       sem_eval.adb, mdll.adb, par-ch5.adb, s-poosiz.adb, sem_ch4.adb,
+       a-ngelfu.adb, s-taspri-solaris.ads, a-cforse.adb: Fix typos.
+
 2015-10-20  Arnaud Charlet  <charlet@adacore.com>
 
        * sem_aggr.adb, mlib-prj.adb, prep.adb, eval_fat.adb, rtsfind.adb,
index 2b09018ab57e907eedb4e12460211435da22f37e..cf4e2ab1a36a24cc09dba7e024169d51fde88a32 100644 (file)
@@ -584,7 +584,7 @@ is
    -------------------
 
    function First_Element (Container : Set) return Element_Type is
-      Fst : constant Count_Type :=  First (Container).Node;
+      Fst : constant Count_Type := First (Container).Node;
    begin
       if Fst = 0 then
          raise Constraint_Error with "set is empty";
index bfc0bcf3a42909bf154e583e4403e8a568e96865..03079618792cf437e8bb2d4fb9d49e6a6614bca4 100644 (file)
@@ -157,7 +157,7 @@ package body Ada.Containers.Red_Black_Trees.Generic_Operations is
         and then Color (X) = Black
       loop
          if X = Left (Parent (X)) then
-            W :=  Right (Parent (X));
+            W := Right (Parent (X));
 
             if Color (W) = Red then
                Set_Color (W, Black);
@@ -201,7 +201,7 @@ package body Ada.Containers.Red_Black_Trees.Generic_Operations is
          else
             pragma Assert (X = Right (Parent (X)));
 
-            W :=  Left (Parent (X));
+            W := Left (Parent (X));
 
             if Color (W) = Red then
                Set_Color (W, Black);
index 7546f75ddb12cdff35abf46f71f4453d885c87b5..f17d92497acdd862268229956cc5a0dfa457ba4e 100644 (file)
@@ -127,7 +127,7 @@ package body Ada.Numerics.Generic_Elementary_Functions is
                then
                   Int_Part := Integer (Float_Type'Base'Truncation (A_Right));
                   Result := Left ** Int_Part;
-                  Rest :=  A_Right - Float_Type'Base (Int_Part);
+                  Rest := A_Right - Float_Type'Base (Int_Part);
 
                   --  Compute with two leading bits of the mantissa using
                   --  square roots. Bound  to be better than logarithms, and
@@ -148,7 +148,7 @@ package body Ada.Numerics.Generic_Elementary_Functions is
                      Rest := Rest - 0.25;
                   end if;
 
-                  Result :=  Result *
+                  Result := Result *
                     Float_Type'Base (Aux.Pow (Double (Left), Double (Rest)));
 
                   if Right >= 0.0 then
index b75974065d25adcae2e2bc443eb1839a2cbcda7d..0ef7b02dafe53abeb8bf2d7f0d5f69939ff7f53c 100644 (file)
@@ -88,7 +88,7 @@ package body Ada.Containers.Red_Black_Trees.Generic_Bounded_Operations is
       X := Node;
       while X /= Tree.Root and then Color (N (X)) = Black loop
          if X = Left (N (Parent (N (X)))) then
-            W :=  Right (N (Parent (N (X))));
+            W := Right (N (Parent (N (X))));
 
             if Color (N (W)) = Red then
                Set_Color (N (W), Black);
@@ -132,7 +132,7 @@ package body Ada.Containers.Red_Black_Trees.Generic_Bounded_Operations is
          else
             pragma Assert (X = Right (N (Parent (N (X)))));
 
-            W :=  Left (N (Parent (N (X))));
+            W := Left (N (Parent (N (X))));
 
             if Color (N (W)) = Red then
                Set_Color (N (W), Black);
index ff4bb2c4e18f44411fa0c4b8af1e260fe21e12a6..2fd8b5421f2a651c2b12689d30471bbb84a8b605 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2012, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -231,7 +231,7 @@ package body Ada.Text_IO.Fixed_IO is
 
    --  The final expression for D is
 
-   --     D :=  Integer'Max (-18, Integer'Min (Aft, 18 - (Fore - 1)));
+   --     D := Integer'Max (-18, Integer'Min (Aft, 18 - (Fore - 1)));
 
    --  For Y and Z the following expressions can be derived:
 
index 792208a3806ab8cbf60d7248aed2d8c3a2a826af..80a7e0d9dde021a054e6ec1c0900ddbd04e45675 100644 (file)
@@ -1266,7 +1266,7 @@ package body Exp_Ch6 is
                   Reset_Analyzed_Flags (Lhs);
 
                else
-                  Lhs :=  New_Occurrence_Of (Var, Loc);
+                  Lhs := New_Occurrence_Of (Var, Loc);
                end if;
 
                Set_Assignment_OK (Lhs);
@@ -5649,7 +5649,7 @@ package body Exp_Ch6 is
 
          declare
             Decls   : List_Id;
-            Obj_Ptr : constant Entity_Id :=  Make_Temporary (Loc, 'T');
+            Obj_Ptr : constant Entity_Id := Make_Temporary (Loc, 'T');
 
          begin
             Decls := New_List (
index b0bf000b936192b86f8752f2abbe2d881dab9386..05b3530955331debbf514fb4acbba1cd7234e3b1 100644 (file)
@@ -7674,7 +7674,7 @@ package body Exp_Ch9 is
 
          --  Create the inner block to protect the abortable part
 
-         Hdle :=  New_List (Build_Abort_Block_Handler (Loc));
+         Hdle := New_List (Build_Abort_Block_Handler (Loc));
 
          Prepend_To (Astats,
            Make_Procedure_Call_Statement (Loc,
index 94c15dfb2e16e9ae29ea215b58b4946e97417296..5bcccbb0a59008354689c7472bbe94242100f6b9 100644 (file)
@@ -152,7 +152,7 @@ package body Exp_Tss is
    begin
       loop
          Btyp := Base_Type (Btyp);
-         Proc :=  TSS (Btyp, Nam);
+         Proc := TSS (Btyp, Nam);
 
          exit when Present (Proc)
            or else not Is_Derived_Type (Btyp);
index 3538deb2fff7fd77190a1e7fc6c1feeb3056fac7..dabea22616f766b238a33c7dbe3de1c7c29075ef 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---                     Copyright (C) 2001-2010, AdaCore                     --
+--                     Copyright (C) 2001-2015, AdaCore                     --
 --                                                                          --
 -- 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- --
@@ -221,8 +221,8 @@ package body GNAT.Directory_Operations.Iteration is
             then
                --  Starting with "<drive>:\"
 
-               DS :=  Strings.Fixed.Index
-                        (SP (SP'First + 3 .. SP'Last), Dir_Seps);
+               DS := Strings.Fixed.Index
+                       (SP (SP'First + 3 .. SP'Last), Dir_Seps);
 
                if DS = 0 then
 
index 929191d24aa0f0ef3ab34aa5fad53ee4303f7f09..449ac17dec44618add94f3adad3ec2c10990e175 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---                     Copyright (C) 2002-2014, AdaCore                     --
+--                     Copyright (C) 2002-2015, AdaCore                     --
 --                                                                          --
 -- 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- --
@@ -157,7 +157,7 @@ package body GNAT.Dynamic_HTables is
 
          else
             loop
-               Next_Elmt :=  Next (Elmt);
+               Next_Elmt := Next (Elmt);
 
                if Next_Elmt = Null_Ptr then
                   return;
index ecdbbacd0dbb56d636abcad58b742eb5214e7f59..c8d7ed7f6c766f6e2e834c2f661692df278bc85e 100644 (file)
@@ -2430,7 +2430,7 @@ package body Layout is
       --  represents them the same way.
 
       if Is_Access_Type (E) then
-         Desig_Type :=  Underlying_Type (Designated_Type (E));
+         Desig_Type := Underlying_Type (Designated_Type (E));
 
          --  If we only have a limited view of the type, see whether the
          --  non-limited view is available.
index 8fbca9df2b82c6ed849f0c2060e76db1028ffa95..f3ac043a7ac76145a7dbf14d8b0cc18ec3d1c81c 100644 (file)
@@ -6953,7 +6953,7 @@ package body Make is
       Get_Name_String (ALI_File);
       Link_Args (1) := new String'(Name_Buffer (1 .. Name_Len));
 
-      Link_Args (2 .. Args'Length + 1) :=  Args;
+      Link_Args (2 .. Args'Length + 1) := Args;
 
       GNAT.OS_Lib.Normalize_Arguments (Link_Args);
 
index e6eb5e936a3254d030a4c63b86e8eb015a2ef51c..03e3573aacaa587f21c529b5fa9c4e41e7356cb0 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2007, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -326,7 +326,7 @@ package body MDLL is
                        Adr_Opt'Unchecked_Access & All_Options;
          begin
             if Map_File then
-               Params :=  Map_Opt'Unchecked_Access & Params;
+               Params := Map_Opt'Unchecked_Access & Params;
             end if;
 
             Utl.Gcc (Output_File => Dll_File,
index a103d96032b3d3223f31b1d1b445462df7c29071..cd1f91a0788ee35383ba2743f20c7a6b429b826c 100644 (file)
@@ -726,7 +726,7 @@ package body Ch12 is
 
          when Tok_Not =>
             if P_Null_Exclusion then
-               Typedef_Node :=  P_Access_Type_Definition;
+               Typedef_Node := P_Access_Type_Definition;
                Set_Null_Exclusion_Present (Typedef_Node);
                return Typedef_Node;
 
index 7b1bc44f39d97da6d2c602538f1c135d30e7a45f..a7d0e5a3d7bedfc8f85dd0f0aa862870e99286cf 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2014, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -1729,7 +1729,7 @@ package body Ch5 is
       Node1 : Node_Id;
 
    begin
-      Node1 :=  New_Node (N_Iterator_Specification, Sloc (Def_Id));
+      Node1 := New_Node (N_Iterator_Specification, Sloc (Def_Id));
       Set_Defining_Identifier (Node1, Def_Id);
 
       if Token = Tok_Colon then
index 5330273945746b9af3b7c9c63d8656d44d1d3600..2d6a3c6f477a5f005eae7195468a18b1d4f1dec9 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---                    Copyright (C) 1995-2013, AdaCore                      --
+--                    Copyright (C) 1995-2015, AdaCore                      --
 --                                                                          --
 -- 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- --
@@ -149,7 +149,7 @@ package body System.HTable is
 
          else
             loop
-               Next_Elmt :=  Next (Elmt);
+               Next_Elmt := Next (Elmt);
 
                if Next_Elmt = Null_Ptr then
                   return;
index c2dd03bf5d4262da14a96c5da3e7a02722eca276..683f32e315d38bc4de9be7b12a1e6190aa5527ef 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2009, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -51,7 +51,7 @@ package body System.Pool_Size is
    function To_Storage_Count_Access is
      new Ada.Unchecked_Conversion (Address, Storage_Count_Access);
 
-   SC_Size : constant :=  SSE.Storage_Count'Object_Size / System.Storage_Unit;
+   SC_Size : constant := SSE.Storage_Count'Object_Size / System.Storage_Unit;
 
    package Variable_Size_Management is
 
index cba89366014bb6a72f23753d1fae2cbd0d518787..35dc9628b980bbad0e29717a396c00d40f3d630e 100644 (file)
@@ -254,9 +254,9 @@ package System.Soft_Links is
    procedure Enter_Master_NT;
    procedure Complete_Master_NT;
 
-   Current_Master  : Get_Integer_Call :=  Current_Master_NT'Access;
-   Enter_Master    : No_Param_Proc    :=  Enter_Master_NT'Access;
-   Complete_Master : No_Param_Proc    :=  Complete_Master_NT'Access;
+   Current_Master  : Get_Integer_Call := Current_Master_NT'Access;
+   Enter_Master    : No_Param_Proc    := Enter_Master_NT'Access;
+   Complete_Master : No_Param_Proc    := Complete_Master_NT'Access;
 
    ----------------------
    -- Delay Soft-Links --
index 93c520da02a6b9f5c40a84558d8bfae42bbb812d..e06d4d4dbbebc59270cb7f4a83490757ba99838a 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                  S p e c                                 --
 --                                                                          --
---          Copyright (C) 1992-2014, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, Free Software Foundation, Inc.         --
 --                                                                          --
 -- GNARL 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- --
@@ -94,7 +94,7 @@ private
    type Lock is record
       L              : aliased Base_Lock;
       Ceiling        : System.Any_Priority := System.Any_Priority'First;
-      Saved_Priority : System.Any_Priority :=  System.Any_Priority'First;
+      Saved_Priority : System.Any_Priority := System.Any_Priority'First;
       Owner          : Owner_ID;
       Next           : Lock_Ptr;
       Level          : Private_Task_Serial_Number := 0;
index a641be319598d3f875acc8c0f8644044ad94b387..44dbff7c3dff3e5ea50b2d299a78960deab31589 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2014, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -142,7 +142,7 @@ package body System.Val_LLU is
 
          if Base not in 2 .. 16 then
             Overflow := True;
-            Base :=  16;
+            Base := 16;
          end if;
 
          --  Scan out based integer
index b679807803f72f36bd4d67e53526a5a8956b03a8..009d0bc88c1af3d0fe88b3402fb97e9ea433a1e4 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2014, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -142,7 +142,7 @@ package body System.Val_Uns is
 
          if Base not in 2 .. 16 then
             Overflow := True;
-            Base :=  16;
+            Base := 16;
          end if;
 
          --  Scan out based integer
index 55456e6996febc497de0f9962e53c8b298c6cf44..bae9762f7185695cbd73baec7469c0e61b50b03a 100644 (file)
@@ -3127,7 +3127,7 @@ package body Sem_Ch10 is
                --  visible, so analyze the declaration for B now, in case it
                --  has not been done yet.
 
-               Ent :=  Entity (Selector_Name (Nam));
+               Ent := Entity (Selector_Name (Nam));
                Analyze
                  (Parent
                    (Unit_Declaration_Node (Entity (Selector_Name (Nam)))));
index da3bd903bd3c837f6726c5add9d62b1f37efaa23..41e90071a4d528cc02054d690f8cc0c4659796f6 100644 (file)
@@ -1235,7 +1235,7 @@ package body Sem_Ch12 is
 
          elsif No (Selector_Name (Actual)) then
             Found_Assoc := Actual;
-            Act :=  Explicit_Generic_Actual_Parameter (Actual);
+            Act := Explicit_Generic_Actual_Parameter (Actual);
             Num_Matched := Num_Matched + 1;
             Next (Actual);
 
@@ -1254,7 +1254,7 @@ package body Sem_Ch12 is
                   Set_Etype  (Selector_Name (Actual), Etype (A_F));
                   Generate_Reference (A_F, Selector_Name (Actual));
                   Found_Assoc := Actual;
-                  Act :=  Explicit_Generic_Actual_Parameter (Actual);
+                  Act := Explicit_Generic_Actual_Parameter (Actual);
                   Num_Matched := Num_Matched + 1;
                   exit;
                end if;
@@ -3600,7 +3600,7 @@ package body Sem_Ch12 is
                   New_Copy_Tree (Name (Defining_Unit_Name (N))),
                 Defining_Identifier => Act_Decl_Id);
          else
-            Act_Decl_Name :=  Act_Decl_Id;
+            Act_Decl_Name := Act_Decl_Id;
          end if;
 
       --  Case of instantiation of a formal package
@@ -10882,7 +10882,7 @@ package body Sem_Ch12 is
                 Name => New_Copy_Tree (Name (Defining_Unit_Name (Act_Spec))),
                 Defining_Identifier => Act_Body_Id);
          else
-            Act_Body_Name :=  Act_Body_Id;
+            Act_Body_Name := Act_Body_Id;
          end if;
 
          Set_Defining_Unit_Name (Act_Body, Act_Body_Name);
index 22e7cbb9d128d273993296241be989bd7607aa3f..ea1640004ff35b3b801e5c6fbac9f66a7abea317 100644 (file)
@@ -5935,7 +5935,7 @@ package body Sem_Ch3 is
 
       if ASIS_Mode then
          declare
-            Typ : constant Entity_Id :=  Make_Temporary (Loc, 'S');
+            Typ : constant Entity_Id := Make_Temporary (Loc, 'S');
 
          begin
             if Nkind (Spec) = N_Access_Function_Definition then
@@ -18369,7 +18369,7 @@ package body Sem_Ch3 is
 
          --  The index is given by a subtype with a range constraint
 
-         T :=  Base_Type (Entity (Subtype_Mark (N)));
+         T := Base_Type (Entity (Subtype_Mark (N)));
 
          if not Is_Discrete_Type (T) then
             Error_Msg_N ("discrete type required for range", N);
@@ -21547,7 +21547,7 @@ package body Sem_Ch3 is
       R      : Node_Id;
       Subt   : Entity_Id)
    is
-      Kind : constant Entity_Kind :=  Ekind (Def_Id);
+      Kind : constant Entity_Kind := Ekind (Def_Id);
 
    begin
       --  Defend against previous error
index fe677541eb13f53f4404e7ebacd08526bd19df04..b01640d3dcf3ac5a307682085e2f14e9da5229bc 100644 (file)
@@ -7878,7 +7878,7 @@ package body Sem_Ch4 is
          --  Before analysis, a function call appears as an indexed component
          --  if there are no named associations.
 
-         elsif Nkind (Parent_Node) =  N_Indexed_Component
+         elsif Nkind (Parent_Node) = N_Indexed_Component
            and then N = Prefix (Parent_Node)
          then
             Node_To_Replace := Parent_Node;
index 455d7023e896ddddb37fba4acb4610b904a82aae..c03269360bfab2d07e55eba2f71bf95f6f818627 100644 (file)
@@ -10361,7 +10361,7 @@ package body Sem_Ch6 is
             Set_Default_Value (Formal, Expression (Param_Spec));
 
             if Present (Expression (Param_Spec)) then
-               Default :=  Expression (Param_Spec);
+               Default := Expression (Param_Spec);
 
                if Is_Scalar_Type (Etype (Default)) then
                   if Nkind (Parameter_Type (Param_Spec)) /=
index 290d933bdf020f16db45a6210d419bf63001b063..18023c152ae2eecd9a8f28fdaefef5d6cffcae6b 100644 (file)
@@ -9214,7 +9214,7 @@ package body Sem_Ch8 is
       S : Entity_Id;
    begin
       for J in reverse 1 .. Scope_Stack.Last loop
-         S :=  Scope_Stack.Table (J).Entity;
+         S := Scope_Stack.Table (J).Entity;
          Write_Int (Int (S));
          Write_Str (" === ");
          Write_Name (Chars (S));
index 1f00ea776c1a1109583580e14811bc2db9a1f73c..728d17d5563a73bfb018ae6f7a04ca4e1a9b2a89 100644 (file)
@@ -781,7 +781,7 @@ package body Sem_Ch9 is
       for J in reverse 0 .. Scope_Stack.Last loop
          Task_Nam := Scope_Stack.Table (J).Entity;
          exit when Ekind (Etype (Task_Nam)) = E_Task_Type;
-         Kind :=  Ekind (Task_Nam);
+         Kind := Ekind (Task_Nam);
 
          if Kind /= E_Block and then Kind /= E_Loop
            and then not Is_Entry (Task_Nam)
index f8420d4ad74394687be617a10d7cae562f1efa80..28acbf06b4c1b20b4ce78fe908c21dcd3d9e994e 100644 (file)
@@ -2220,7 +2220,7 @@ package body Sem_Eval is
          --  case of a concatenation of a series of string literals.
 
          if Nkind (Left_Str) = N_String_Literal then
-            Left_Len :=  String_Length (Strval (Left_Str));
+            Left_Len := String_Length (Strval (Left_Str));
 
             --  If the left operand is the empty string, and the right operand
             --  is a string literal (the case of "" & "..."), the result is the
index 67278efa4560623d9d973bbf7c59a0ec97742ba6..a96f1d1657a599ba16a1dee8cc6607308b3bf755 100644 (file)
@@ -7395,7 +7395,7 @@ package body Sem_Res is
 
          declare
             Pref : constant Node_Id := Prefix (Entry_Name);
-            Ent  : constant Entity_Id :=  Entity (Selector_Name (Entry_Name));
+            Ent  : constant Entity_Id := Entity (Selector_Name (Entry_Name));
             I    : Interp_Index;
             It   : Interp;
 
@@ -7418,7 +7418,7 @@ package body Sem_Res is
       else pragma Assert (Nkind (Entry_Name) = N_Indexed_Component);
          Nam := Entity (Selector_Name (Prefix (Entry_Name)));
          Resolve (Prefix (Prefix (Entry_Name)));
-         Index :=  First (Expressions (Entry_Name));
+         Index := First (Expressions (Entry_Name));
          Resolve (Index, Entry_Index_Type (Nam));
 
          --  Up to this point the expression could have been the actual in a
@@ -12049,7 +12049,7 @@ package body Sem_Res is
             if Present (It.Typ) then
                N1  := It1.Nam;
                T1  := It1.Typ;
-               It1 :=  Disambiguate (Operand, I1, I, Any_Type);
+               It1 := Disambiguate (Operand, I1, I, Any_Type);
 
                if It1 = No_Interp then
                   Conversion_Error_N
index 162e2bbfb7ec007817830bb97586c272c6efa043..152be0282b525b52c31cecb146065d0fee8d4040 100644 (file)
@@ -1129,7 +1129,7 @@ package body Sem_Util is
          D := First_Elmt (Discriminant_Constraint (Desig_Typ));
          while Present (D) loop
             if Denotes_Discriminant (Node (D)) then
-               D_Val :=  Make_Selected_Component (Loc,
+               D_Val := Make_Selected_Component (Loc,
                  Prefix => New_Copy_Tree (P),
                 Selector_Name => New_Occurrence_Of (Entity (Node (D)), Loc));
 
@@ -7507,7 +7507,7 @@ package body Sem_Util is
                  ("Operation First for iterable type must be unique", Aspect);
                return Any_Type;
             else
-               Cursor :=  Etype (Func);
+               Cursor := Etype (Func);
             end if;
          end if;
 
index 7a554392a79becc56281c0272534ca47d59667c1..948c521b22e7d87ca8c2bf478cd9ada0bee30e55 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2014, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2015, 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- --
@@ -1586,7 +1586,7 @@ package body Uintp is
             --  Use prior single precision steps to compute this Euclid step
 
             --  For constructs such as:
-            --  sqrt_2: constant :=  1.41421_35623_73095_04880_16887_24209_698;
+            --  sqrt_2: constant := 1.41421_35623_73095_04880_16887_24209_698;
             --  sqrt_eps: constant long_float := long_float( 1.0 / sqrt_2)
             --    ** long_float'machine_mantissa;
             --