From: Ronan Desplanques Date: Fri, 1 Mar 2024 09:31:12 +0000 (+0100) Subject: ada: Small cleanup in aggregate expansion code X-Git-Tag: basepoints/gcc-16~8965 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1da18c25593fceed40233cd2cd49409ea817372a;p=thirdparty%2Fgcc.git 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 --git a/gcc/ada/exp_aggr.adb b/gcc/ada/exp_aggr.adb index 5d2b334722a..cff04fc1b79 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);