exp_attr.adb, [...]: Minor reformatting.
authorHristian Kirtchev <kirtchev@adacore.com>
Fri, 23 Oct 2015 12:39:08 +0000 (12:39 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Fri, 23 Oct 2015 12:39:08 +0000 (14:39 +0200)
2015-10-23  Hristian Kirtchev  <kirtchev@adacore.com>

* exp_attr.adb, freeze.adb, sem_attr.adb, exp_aggr.adb,
gnatname.adb: Minor reformatting.

From-SVN: r229244

gcc/ada/ChangeLog
gcc/ada/exp_aggr.adb
gcc/ada/exp_attr.adb
gcc/ada/freeze.adb
gcc/ada/gnatname.adb
gcc/ada/sem_attr.adb

index 7d6f607ec1f3d76722dcec0908bdd00b692a3e1a..a4dbbe5f72e17181bd80f5bb1ba3a6ae3f93a5d3 100644 (file)
@@ -1,3 +1,8 @@
+2015-10-23  Hristian Kirtchev  <kirtchev@adacore.com>
+
+       * exp_attr.adb, freeze.adb, sem_attr.adb, exp_aggr.adb,
+       gnatname.adb: Minor reformatting.
+
 2015-10-23  Steve Baird  <baird@adacore.com>
 
        * a-cbdlli.ads, a-cbhama.ads, a-cbhase.ads, a-cbmutr.ads,
index 4864fbfbb222122fbf9ca8bac249483c1e1a1f10..f09759702aaa012de340c76f91bbb1eeccad4d6d 100644 (file)
@@ -6509,9 +6509,10 @@ package body Exp_Aggr is
               Into        => Target,
               Scalar_Comp => Is_Scalar_Type (Component_Type (Typ)),
               Indexes     => No_List);
-      else
-         --  Directly or indirectly (e.g. access protected procedure) a record
 
+      --  Directly or indirectly (e.g. access protected procedure) a record
+
+      else
          Aggr_Code := Build_Record_Aggr_Code (N, Typ, Target);
       end if;
 
index e602b4ba12bb81d0199fab11aa5c878e6e27492f..51297ec413259720089c5988259f8da0c1390c5e 100644 (file)
@@ -1473,22 +1473,25 @@ package body Exp_Attr is
                declare
                   T1 : constant Entity_Id := Make_Temporary (Loc, 'T', Left);
                   T2 : constant Entity_Id := Make_Temporary (Loc, 'T', Right);
+
                begin
                   Rewrite (N,
                     Make_Expression_With_Actions (Loc,
-                      Actions => New_List (
+                      Actions    => New_List (
                         Make_Object_Declaration (Loc,
                           Defining_Identifier => T1,
+                          Constant_Present    => True,
                           Object_Definition   =>
                             New_Occurrence_Of (Etype (Left), Loc),
-                          Constant_Present    => True,
                           Expression          => Relocate_Node (Left)),
+
                         Make_Object_Declaration (Loc,
                           Defining_Identifier => T2,
+                          Constant_Present    => True,
                           Object_Definition   =>
                             New_Occurrence_Of (Etype (Right), Loc),
-                          Constant_Present    => True,
                           Expression          => Relocate_Node (Right))),
+
                       Expression =>
                         Make_If_Expression (Loc,
                           Expressions => New_List (
index 91ff7a0eaae3182087151e589ff9fcf76c7b82fe..081d7513c538b8c4e1a6e8d0e0830773a411c128 100644 (file)
@@ -3356,8 +3356,9 @@ package body Freeze is
               and then not Has_Warnings_Off (E)
               and then not Has_Warnings_Off (R_Type)
             then
-               Error_Msg_N ("?x?foreign convention function& should not " &
-                 "return unconstrained array!", E);
+               Error_Msg_N
+                 ("?x?foreign convention function& should not return "
+                  & "unconstrained array!", E);
             end if;
          end if;
 
@@ -4266,7 +4267,7 @@ package body Freeze is
             end if;
          end if;
 
-         --  The following checks are only relevant when SPARK_Mode is on as
+         --  The following checks are relevant only when SPARK_Mode is on as
          --  they are not standard Ada legality rules.
 
          if SPARK_Mode = On then
index 5af5d537227df832c2cec7b3b45354012374e108..a01bbb20eebcf1dbcf7d326c34eb6f1046b7e3c6 100644 (file)
@@ -613,22 +613,22 @@ begin
       declare
          Gnatname : constant String_Access :=
                       Program_Name ("gnatname", "gnatname");
+         Arg_Len  : Positive      := Argument_Count;
          Target   : String_Access := null;
-         Arg_Len  : Positive := Argument_Count;
 
       begin
          --  Find the target, if any
 
          if Gnatname.all /= "gnatname" then
-            Target := new String'(Gnatname
-                                  (Gnatname'First .. Gnatname'Last - 9));
+            Target :=
+              new String'(Gnatname (Gnatname'First .. Gnatname'Last - 9));
             Arg_Len := Arg_Len + 1;
          end if;
 
          declare
+            Args    : Argument_List (1 .. Arg_Len);
             Gprname : String_Access :=
-                         Locate_Exec_On_Path (Exec_Name => "gprname");
-            Args : Argument_List (1 .. Arg_Len);
+                        Locate_Exec_On_Path (Exec_Name => "gprname");
             Success : Boolean;
 
          begin
@@ -640,8 +640,7 @@ begin
                --  Add the target if there is one
 
                if Target /= null then
-                  Args (Args'Last) :=
-                    new String'("--target=" & Target.all);
+                  Args (Args'Last) := new String'("--target=" & Target.all);
                end if;
 
                Spawn (Gprname.all, Args, Success);
@@ -656,19 +655,19 @@ begin
       end;
    end if;
 
-   if Create_Project then
-      --  This only happens if gprname is not found or if the invocation of
-      --  gprname did not succeed.
+   --  This only happens if gprname is not found or if the invocation of
+   --  gprname did not succeed.
 
+   if Create_Project then
       Write_Line
-           ("warning: gnatname -P is obsolete and will not be available "
-            & "in the next release; use gprname instead");
+        ("warning: gnatname -P is obsolete and will not be available in the "
+         & "next release; use gprname instead");
    end if;
 
    --  If no Ada or foreign pattern was specified, print the usage and return
 
    if Patterns.Last (Arguments.Table (Arguments.Last).Name_Patterns) = 0
-      and then
+        and then
       Patterns.Last (Arguments.Table (Arguments.Last).Foreign_Patterns) = 0
    then
       if Argument_Count = 0 then
@@ -685,9 +684,7 @@ begin
    --  information, the current directory is the directory of the specified
    --  file.
 
-   if Patterns.Last
-     (Arguments.Table (Arguments.Last).Directories) = 0
-   then
+   if Patterns.Last (Arguments.Table (Arguments.Last).Directories) = 0 then
       Patterns.Append
         (Arguments.Table (Arguments.Last).Directories, new String'("."));
    end if;
index 948d71af0fa5d23a41fa96825bba78ce6b65b795..21b66d4931373e05e6c8dc07d26cafd5faaa70ff 100644 (file)
@@ -4312,10 +4312,10 @@ package body Sem_Attr is
             Stmt := Parent (Stmt);
          end loop;
 
-            --  Loop_Entry must appear within a Loop_Assertion pragma (Assert,
-            --  Assert_And_Cut, Assume count as loop assertion pragmas for this
-            --  purpose if they appear in an appropriate location in a loop,
-            --  which was already checked by the top level pragma circuit).
+         --  Loop_Entry must appear within a Loop_Assertion pragma (Assert,
+         --  Assert_And_Cut, Assume count as loop assertion pragmas for this
+         --  purpose if they appear in an appropriate location in a loop,
+         --  which was already checked by the top level pragma circuit).
 
          if No (Enclosing_Pragma) then
             Error_Attr ("attribute% must appear within appropriate pragma", N);