https://gcc.gnu.org/g:1da18c25593fceed40233cd2cd49409ea817372a

commit r15-588-g1da18c25593fceed40233cd2cd49409ea817372a
Author: Ronan Desplanques <desplanq...@adacore.com>
Date:   Fri Mar 1 10:31:12 2024 +0100

    ada: Small cleanup in aggregate expansion code
    
    This patch moves a statement outside of a loop because it didn't
    need to be inside that loop. The behavior of the program is not
    affected.
    
    gcc/ada/
    
            * exp_aggr.adb (Flatten): Small cleanup.

Diff:
---
 gcc/ada/exp_aggr.adb | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/gcc/ada/exp_aggr.adb b/gcc/ada/exp_aggr.adb
index 5d2b334722a2..cff04fc1b79c 100644
--- a/gcc/ada/exp_aggr.adb
+++ b/gcc/ada/exp_aggr.adb
@@ -4626,6 +4626,14 @@ package body Exp_Aggr is
             Component_Loop : while Present (Elmt) loop
                Expr := Expression (Elmt);
 
+               --  If the expression involves a construct that generates a
+               --  loop, we must generate individual assignments and no
+               --  flattening is possible.
+
+               if Nkind (Expr) = N_Quantified_Expression then
+                  return False;
+               end if;
+
                --  In the case of a multidimensional array, check that the
                --  aggregate can be recursively flattened.
 
@@ -4642,14 +4650,6 @@ package body Exp_Aggr is
                   if Nkind (Choice) = N_Others_Choice then
                      Rep_Count := 0;
 
-                     --  If the expression involves a construct that generates
-                     --  a loop, we must generate individual assignments and
-                     --  no flattening is possible.
-
-                     if Nkind (Expr) = N_Quantified_Expression then
-                        return False;
-                     end if;
-
                      for J in Vals'Range loop
                         if No (Vals (J)) then
                            Vals (J)  := New_Copy_Tree (Expr);

Reply via email to