From: Piotr Trojanek Date: Tue, 4 Apr 2023 11:38:14 +0000 (+0200) Subject: ada: Accept parameters of enclosing subprograms in exceptional cases X-Git-Tag: basepoints/gcc-15~8805 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4017d7fddda521dda5f0bc2c89942246d0aeedab;p=thirdparty%2Fgcc.git ada: Accept parameters of enclosing subprograms in exceptional cases Rules about parameters of modes OUT and IN OUT in aspect Exceptional_Cases only apply to the parameters of the current subprogram. gcc/ada/ * sem_res.adb (Resolve_Entity_Name): Refine rules for Exceptional_Cases. --- diff --git a/gcc/ada/sem_res.adb b/gcc/ada/sem_res.adb index 6d4bef8d38e3..066072a6afec 100644 --- a/gcc/ada/sem_res.adb +++ b/gcc/ada/sem_res.adb @@ -8122,6 +8122,7 @@ package body Sem_Res is -- data from the object. if Ekind (E) in E_Out_Parameter | E_In_Out_Parameter + and then Scope (E) = Current_Scope and then Within_Exceptional_Cases_Consequence (N) and then not In_Attribute_Old (N) and then not (Nkind (Parent (N)) = N_Attribute_Reference