exp_ch5.adb: Minor reformatting
authorRobert Dewar <dewar@adacore.com>
Wed, 20 Aug 2008 15:50:31 +0000 (17:50 +0200)
committerArnaud Charlet <charlet@gcc.gnu.org>
Wed, 20 Aug 2008 15:50:31 +0000 (17:50 +0200)
2008-08-20  Robert Dewar  <dewar@adacore.com>

* exp_ch5.adb: Minor reformatting

From-SVN: r139318

gcc/ada/exp_ch5.adb

index 952501e..98f1879 100644 (file)
@@ -2543,13 +2543,12 @@ package body Exp_Ch5 is
          if Is_Build_In_Place
            and then
                (Controlled_Type (Parent_Function_Typ)
-             or else
-               (Is_Class_Wide_Type (Parent_Function_Typ)
-                  and then Controlled_Type (Root_Type (Parent_Function_Typ)))
-             or else
-               Controlled_Type (Etype (Return_Object_Entity))
-             or else
-               (Present (Exp) and then Controlled_Type (Etype (Exp))))
+                 or else (Is_Class_Wide_Type (Parent_Function_Typ)
+                           and then
+                             Controlled_Type (Root_Type (Parent_Function_Typ)))
+                 or else Controlled_Type (Etype (Return_Object_Entity))
+                 or else (Present (Exp)
+                           and then Controlled_Type (Etype (Exp))))
          then
             Append_To (Statements, Move_Final_List);
          end if;