From 37d19a6559924e0a68f203bcee904e6463decc2d Mon Sep 17 00:00:00 2001 From: charlet Date: Tue, 12 Jun 2012 11:09:10 +0000 Subject: 2012-06-12 Robert Dewar * sem_dist.adb, exp_ch7.adb, sem_type.adb, exp_attr.adb, sinfo.ads, sem_ch7.adb, exp_alfa.adb, sem_scil.adb, sem_ch12.adb, sem_util.adb, sem_res.adb, sem_attr.adb, sem_elab.adb, exp_ch6.adb, sem_ch4.adb, sem_warn.adb, scil_ll.adb, exp_cg.adb: Minor code reorganization. 2012-06-12 Eric Botcazou * s-tasini.ads: Minor fix in comment. 2012-06-12 Thomas Quinot * freeze.adb (Freeze_Record_Type): Warn on record with Scalar_Storage_Order if there is no placed component. 2012-06-12 Thomas Quinot * sem_ch3.adb: Minor comment fix. 2012-06-12 Vincent Celier * ali-util.adb (Time_Stamp_Mismatch): In minimal recompilation mode, use Stringt Mark and Release to avoid growing the Stringt internal tables uselessly. * stringt.adb (Strings_Last): New global variable (String_Chars_Last): New global variable. (Mark, Release): New procedures. * stringt.ads (Mark, Release) New procedures. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@188445 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ada/sem_attr.adb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gcc/ada/sem_attr.adb') diff --git a/gcc/ada/sem_attr.adb b/gcc/ada/sem_attr.adb index 10af9e2d054..345fdb55eeb 100644 --- a/gcc/ada/sem_attr.adb +++ b/gcc/ada/sem_attr.adb @@ -3849,8 +3849,7 @@ package body Sem_Attr is -- Case of attribute used as actual for subprogram (positional) - elsif Nkind_In (Parnt, N_Procedure_Call_Statement, - N_Function_Call) + elsif Nkind (Parnt) in N_Subprogram_Call and then Is_Entity_Name (Name (Parnt)) then Must_Be_Imported (Entity (Name (Parnt))); @@ -3858,8 +3857,7 @@ package body Sem_Attr is -- Case of attribute used as actual for subprogram (named) elsif Nkind (Parnt) = N_Parameter_Association - and then Nkind_In (GParnt, N_Procedure_Call_Statement, - N_Function_Call) + and then Nkind (GParnt) in N_Subprogram_Call and then Is_Entity_Name (Name (GParnt)) then Must_Be_Imported (Entity (Name (GParnt))); -- cgit v1.2.1