[Ada] Minor reformatting
authorHristian Kirtchev <kirtchev@adacore.com>
Tue, 9 Jul 2019 07:54:40 +0000 (07:54 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Tue, 9 Jul 2019 07:54:40 +0000 (07:54 +0000)
2019-07-09  Hristian Kirtchev  <kirtchev@adacore.com>

gcc/ada/

* exp_ch9.adb, exp_util.adb, repinfo.adb, sem_ch12.adb,
sem_prag.adb, sem_res.adb, sem_spark.adb, sem_util.adb: Minor
reformatting.

From-SVN: r273282

gcc/ada/ChangeLog
gcc/ada/exp_ch9.adb
gcc/ada/exp_util.adb
gcc/ada/repinfo.adb
gcc/ada/sem_ch12.adb
gcc/ada/sem_prag.adb
gcc/ada/sem_res.adb
gcc/ada/sem_spark.adb
gcc/ada/sem_util.adb

index adb86222a5831aaac3b3aaacb17f39ad742f6829..7d8ea33d5557124b23f414ab24b34486d440f796 100644 (file)
@@ -1,3 +1,9 @@
+2019-07-09  Hristian Kirtchev  <kirtchev@adacore.com>
+
+       * exp_ch9.adb, exp_util.adb, repinfo.adb, sem_ch12.adb,
+       sem_prag.adb, sem_res.adb, sem_spark.adb, sem_util.adb: Minor
+       reformatting.
+
 2019-07-09  Ed Schonberg  <schonberg@adacore.com>
 
        * sem_res.adb (Resolve_Equality_Op): If the node was overloaded,
index e742ec3818c8728c8782bfafd035e03c2ce08b4b..48b4090a836920fea643eed2fb878f1c85ccb3db 100644 (file)
@@ -10712,7 +10712,7 @@ package body Exp_Ch9 is
               Make_Defining_Identifier (Eloc,
                 New_External_Name (Chars (Ename), 'A', Num_Accept));
 
-            --  Link the acceptor to the original receiving entry.
+            --  Link the acceptor to the original receiving entry
 
             Set_Ekind           (PB_Ent, E_Procedure);
             Set_Receiving_Entry (PB_Ent, Eent);
@@ -12666,8 +12666,9 @@ package body Exp_Ch9 is
       --  to Build_Simple_Entry_Call.
 
       if Is_Disp_Select then
-         --  Compute the delay at this stage because the evaluation of
-         --  its expression must not occur earlier (see ACVC C97302A).
+
+         --  Compute the delay at this stage because the evaluation of its
+         --  expression must not occur earlier (see ACVC C97302A).
 
          Append_To (Stmts,
            Make_Assignment_Statement (Loc,
@@ -14882,8 +14883,8 @@ package body Exp_Ch9 is
 
          --  Ditto for a package declaration or a full type declaration, etc.
 
-         elsif
-           (Nkind (N) = N_Package_Declaration and then N /= Specification (N))
+         elsif (Nkind (N) = N_Package_Declaration
+                 and then N /= Specification (N))
            or else Nkind (N) in N_Declaration
            or else Nkind (N) in N_Renaming_Declaration
          then
index 77809bc16dd10a666b36e5fb164c5f7733475860..9769d6849226c77061cea847c2366974cb3c3d6d 100644 (file)
@@ -5073,9 +5073,7 @@ package body Exp_Util is
       --  is necessary both for passing legality checks in GNAT and for precise
       --  analysis in GNATprove.
 
-      if GNATprove_Mode
-        and then not Is_Static_Expression (Exp)
-      then
+      if GNATprove_Mode and then not Is_Static_Expression (Exp) then
          return;
       end if;
 
@@ -5100,7 +5098,7 @@ package body Exp_Util is
 
             --  This subtype indication may be used later for constraint checks
             --  we better make sure that if a variable was used as a bound of
-            --  of the original slice, its value is frozen.
+            --  the original slice, its value is frozen.
 
             Evaluate_Slice_Bounds (Exp);
          end;
@@ -11693,7 +11691,7 @@ package body Exp_Util is
 
       Set_Assignment_OK (Res, Assignment_OK (Exp));
 
-      --  Preserve the Do_Range_Check flag in all copies.
+      --  Preserve the Do_Range_Check flag in all copies
 
       Set_Do_Range_Check (Res, Do_Range_Check (Exp));
 
index 1ba7e11e67cce841c8e1b5a78d0b997250c4356f..c378fb634a2c670ba96e72ddaf1901370d94ba84 100644 (file)
@@ -559,7 +559,9 @@ package body Repinfo is
 
                --  Note that formals are not annotated so we skip them here
 
-               elsif Ekind_In (E, E_Variable, E_Constant, E_Loop_Parameter)
+               elsif Ekind_In (E, E_Constant,
+                                  E_Loop_Parameter,
+                                  E_Variable)
                then
                   if List_Representation_Info >= 2 then
                      List_Object_Info (E);
@@ -577,12 +579,12 @@ package body Repinfo is
 
                --  Recurse into bodies
 
-               elsif Ekind_In (E, E_Protected_Type,
-                                  E_Task_Type,
+               elsif Ekind_In (E, E_Package_Body,
+                                  E_Protected_Body,
+                                  E_Protected_Type,
                                   E_Subprogram_Body,
-                                  E_Package_Body,
                                   E_Task_Body,
-                                  E_Protected_Body)
+                                  E_Task_Type)
                then
                   List_Entities (E, Bytes_Big_Endian);
 
index 9afa095c2a6b7048763d374993065668eb5968f4..3aa49755b39fcaa4f210284464ffaaaf8c874a93 100644 (file)
@@ -10315,7 +10315,7 @@ package body Sem_Ch12 is
       --  such as a parent generic within the body of a generic child.
 
       if not Is_Entity_Name (Actual)
-        or else not Ekind_In (Entity (Actual), E_Package, E_Generic_Package)
+        or else not Ekind_In (Entity (Actual), E_Generic_Package, E_Package)
       then
          Error_Msg_N
            ("expect package instance to instantiate formal", Actual);
@@ -10354,13 +10354,11 @@ package body Sem_Ch12 is
               ("previous error in declaration of formal package", Actual);
             Abandon_Instantiation (Actual);
 
-         elsif
-           Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent))
-         then
+         elsif Is_Instance_Of (Parent_Spec, Get_Instance_Of (Gen_Parent)) then
             null;
 
-         --  If this is the current instance of an enclosing generic, that
-         --  unit is the generic package we need.
+         --  If this is the current instance of an enclosing generic, that unit
+         --  is the generic package we need.
 
          elsif In_Open_Scopes (Actual_Pack)
            and then Ekind (Actual_Pack) = E_Generic_Package
@@ -10425,7 +10423,7 @@ package body Sem_Ch12 is
 
             Actual_Ent := First_Entity (Actual_Pack);
             Actual_Of_Formal :=
-               First (Visible_Declarations (Specification (Analyzed_Formal)));
+              First (Visible_Declarations (Specification (Analyzed_Formal)));
             while Present (Actual_Ent)
               and then Actual_Ent /= First_Private_Entity (Actual_Pack)
             loop
index 7f202215b18dff872562fde5ed477e221a0c93ec..97cf3fe24569ecc3a58866adfe1df82ee0cf110e 100644 (file)
@@ -8963,8 +8963,7 @@ package body Sem_Prag is
             Mark_Rewrite_Insertion (Decl);
 
          else
-            Error_Pragma_Arg ("no matching type found for pragma%",
-            Arg2);
+            Error_Pragma_Arg ("no matching type found for pragma%", Arg2);
          end if;
       end Process_Import_Predefined_Type;
 
index e32d5478c99ebcca98a1a99bd62866564bdf28a1..c151e7a39cb75686b7b62fe174e969a52491dfb7 100644 (file)
@@ -8446,6 +8446,7 @@ package body Sem_Res is
             declare
                I  : Interp_Index;
                It : Interp;
+
             begin
                Get_First_Interp (N, I, It);
 
@@ -10086,6 +10087,7 @@ package body Sem_Res is
               and then Is_Overloaded (Opnd)
             then
                Resolve_Equality_Op (Opnd, B_Typ);
+
                if Ekind (Entity (Opnd)) = E_Function then
                   Rewrite_Operator_As_Call (Opnd, Entity (Opnd));
                end if;
index bbd727987c6b29e8f7a460680696523aa699bfb5..70953b5b6da9ba21519f912986917089c67b9d63 100644 (file)
@@ -1612,7 +1612,7 @@ package body Sem_SPARK is
 
                   Move_Expression_List (Expressions (Expr));
 
-                  --  Handle the named components next.
+                  --  Handle the named components next
 
                   while Present (Assoc) loop
                      CL := Choices (Assoc);
@@ -1636,8 +1636,9 @@ package body Sem_SPARK is
                      if Is_Deep (Etype (Expression (Assoc)))
                        and then not Is_Singleton_Choice (CL)
                      then
-                        Error_Msg_F ("singleton choice required"
-                                     & " to prevent aliasing", First (CL));
+                        Error_Msg_F
+                          ("singleton choice required to prevent aliasing",
+                           First (CL));
                      end if;
 
                      --  The subexpressions of an aggregate are moved as part
index 7b7d04470c5905751cbe88f92e265f70d634665c..19e0026d6f71b1c71044376aae6efced6871c00e 100644 (file)
@@ -24269,8 +24269,9 @@ package body Sem_Util is
       Outer : Entity_Id) return Boolean
    is
       Curr : Entity_Id := Inner;
+
    begin
-      --  Similar to the above, but check for scope identity first.
+      --  Similar to the above, but check for scope identity first
 
       while Present (Curr) and then Curr /= Standard_Standard loop
          if Curr = Outer then