exp_attr.adb, [...]: Minor reformatting.
authorHristian Kirtchev <kirtchev@adacore.com>
Thu, 12 Nov 2015 11:12:23 +0000 (11:12 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Thu, 12 Nov 2015 11:12:23 +0000 (12:12 +0100)
2015-11-12  Hristian Kirtchev  <kirtchev@adacore.com>

* exp_attr.adb, freeze.adb, sem_util.adb, sem_ch13.adb: Minor
reformatting.

From-SVN: r230235

gcc/ada/ChangeLog
gcc/ada/exp_attr.adb
gcc/ada/freeze.adb
gcc/ada/sem_ch13.adb
gcc/ada/sem_util.adb

index 9a799de64ec1611987f251ec15462201bb5ce342..bb2fad19f5df4c284a590b9f1d472970f6876c86 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-12  Hristian Kirtchev  <kirtchev@adacore.com>
+
+       * exp_attr.adb, freeze.adb, sem_util.adb, sem_ch13.adb: Minor
+       reformatting.
+
 2015-11-12  Ed Schonberg  <schonberg@adacore.com>
 
        * exp_attr.adb (Compile_Stream_Body_In_Scope): When compiling
index aaa3c728751e2eadde98fc021c8c445c019b39f5..8c0224705bcb0adca1872249711aaa058ad8c387 100644 (file)
@@ -634,11 +634,10 @@ package body Exp_Attr is
       Arr   : Entity_Id;
       Check : Boolean)
    is
-      C_Type    : constant Entity_Id := Base_Type (Component_Type (Arr));
-      Curr      : constant Entity_Id := Current_Scope;
-
-      Install   : Boolean := False;
-      Scop      : Entity_Id := Scope (Arr);
+      C_Type  : constant Entity_Id := Base_Type (Component_Type (Arr));
+      Curr    : constant Entity_Id := Current_Scope;
+      Install : Boolean := False;
+      Scop    : Entity_Id := Scope (Arr);
 
    begin
       if Is_Hidden (Arr)
@@ -646,10 +645,10 @@ package body Exp_Attr is
         and then Ekind (Scop) = E_Package
       then
          Install := True;
-      else
 
-         --  The component type may be private, in which case we install
-         --  its full view to compile the subprogram.
+      else
+         --  The component type may be private, in which case we install its
+         --  full view to compile the subprogram.
 
          Scop := Scope (C_Type);
 
@@ -665,9 +664,7 @@ package body Exp_Attr is
       --  If we are within an instance body, then all visibility has been
       --  established already and there is no need to install the package.
 
-      if Install
-        and then not In_Instance_Body
-      then
+      if Install and then not In_Instance_Body then
          Push_Scope (Scop);
          Install_Visible_Declarations (Scop);
          Install_Private_Declarations (Scop);
index 88e785cda397dff0df5c2334d03b10f9c89d039c..7c56b1fb9a836fc7db52fdff3719d2d2ea9a6cff 100644 (file)
@@ -672,24 +672,25 @@ package body Freeze is
          --  later for the variable if it is assigned.
 
          if (Ekind (E) = E_Variable
-               or else (Ekind (E) = E_Constant
-                          and then not Is_Imported (E)))
+              or else (Ekind (E) = E_Constant
+                        and then not Is_Imported (E)))
            and then Overlays_Constant (E)
            and then Present (Init)
          then
             declare
                O_Ent : Entity_Id;
                Off   : Boolean;
+
             begin
                Find_Overlaid_Entity (Addr, O_Ent, Off);
 
                if Ekind (O_Ent) = E_Constant
                  and then Etype (O_Ent) = Typ
                  and then Present (Constant_Value (O_Ent))
-                 and then Compile_Time_Compare (
-                            Init,
-                            Constant_Value (O_Ent),
-                            Assume_Valid => True) = EQ
+                 and then Compile_Time_Compare
+                            (Init,
+                             Constant_Value (O_Ent),
+                             Assume_Valid => True) = EQ
                then
                   Set_No_Initialization (Decl);
                   return;
index 3d33e639e34b58237a2a17b288182822ee86890a..5c87364d42b9717530ab04939ac2965f76a19a60 100644 (file)
@@ -4725,11 +4725,13 @@ package body Sem_Ch13 is
                   Find_Overlaid_Entity (N, O_Ent, Off);
 
                   if Present (O_Ent) then
+
                      --  If the object overlays a constant object, mark it so
 
                      if Is_Constant_Object (O_Ent) then
                         Set_Overlays_Constant (U_Ent);
                      end if;
+
                   else
                      --  If this is not an overlay, mark a variable as being
                      --  volatile to prevent unwanted optimizations. It's a
@@ -4744,9 +4746,9 @@ package body Sem_Ch13 is
                      end if;
                   end if;
 
-                  --  Overlaying controlled objects is erroneous.
-                  --  Emit warning but continue analysis because program is
-                  --  itself legal, and back-end must see address clause.
+                  --  Overlaying controlled objects is erroneous. Emit warning
+                  --  but continue analysis because program is itself legal,
+                  --  and back-end must see address clause.
 
                   if Present (O_Ent)
                     and then (Has_Controlled_Component (Etype (O_Ent))
index 2422bb3ec47c7d31371c18a355b8784e472d86da..25ffa96e5d29b492102e3a0f77f28456fdf309b6 100644 (file)
@@ -16267,6 +16267,7 @@ package body Sem_Util is
                   Addr  : constant Node_Id := Address_Clause (Ent);
                   O_Ent : Entity_Id;
                   Off   : Boolean;
+
                begin
                   Find_Overlaid_Entity (Addr, O_Ent, Off);