From: Ronan Desplanques <desplanq...@adacore.com> Before this patch, the compiler refrained from rewriting aggregates into purely positional form in some cases of one-component aggregates. As explained in comments, this was because the back end could not handle positional aggregates in those situations.
As the back end seems to have grown more capable, this patch removes the workaround. It also extends the comments describing a warning that is emitted in the same configuration with aggregates. gcc/ada/ * exp_aggr.adb (Aggr_Size_OK): Remove workaround and extend comment. Tested on x86_64-pc-linux-gnu, committed on master. --- gcc/ada/exp_aggr.adb | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gcc/ada/exp_aggr.adb b/gcc/ada/exp_aggr.adb index 9c5944a917d..892f47ceb05 100644 --- a/gcc/ada/exp_aggr.adb +++ b/gcc/ada/exp_aggr.adb @@ -711,9 +711,10 @@ package body Exp_Aggr is return True; end if; - -- One-component aggregates are suspicious, and if the context type - -- is an object declaration with nonstatic bounds it will trip gcc; - -- such an aggregate must be expanded into a single assignment. + -- One-component named aggregates where the index constraint is not + -- known at compile time are suspicious as the user might have + -- intended to write a subtype name but wrote the name of an object + -- instead. We emit a warning if we're in such a case. if Hiv = Lov and then Nkind (Parent (N)) = N_Object_Declaration then declare @@ -741,8 +742,6 @@ package body Exp_Aggr is Error_Msg_N ("\maybe subtype name was meant??", Indx); end if; end if; - - return False; end if; end; end if; -- 2.43.2