* sem_ch3.adb: Minor reformatting
authorArnaud Charlet <charlet@gcc.gnu.org>
Thu, 29 May 2008 08:05:54 +0000 (10:05 +0200)
committerArnaud Charlet <charlet@gcc.gnu.org>
Thu, 29 May 2008 08:05:54 +0000 (10:05 +0200)
From-SVN: r136139

gcc/ada/sem_ch3.adb

index 88a44138039f0af0a49bbfabfa1a1468cf779a97..f0065b739013462e76e47d8b297697b5bb3a5930 100644 (file)
@@ -6285,14 +6285,13 @@ package body Sem_Ch3 is
                   C1 := First_Elmt (New_Discrs);
                   C2 := First_Elmt (Discriminant_Constraint (Derived_Type));
                   while Present (C1) and then Present (C2) loop
-
                      if Fully_Conformant_Expressions (Node (C1), Node (C2))
                        or else
-                     (Is_OK_Static_Expression (Node (C1))
-                        and then
-                      Is_OK_Static_Expression (Node (C2))
-                        and then
-                      Expr_Value (Node (C1)) = Expr_Value (Node (C2)))
+                         (Is_OK_Static_Expression (Node (C1))
+                            and then
+                          Is_OK_Static_Expression (Node (C2))
+                            and then
+                          Expr_Value (Node (C1)) = Expr_Value (Node (C2)))
                      then
                         null;