diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-06 14:21:20 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-04-06 14:21:20 +0000 |
commit | fef772a5d0656a9dfcf2f28240966406c6ee8eb7 (patch) | |
tree | 22743ad17c4fb05c9d0205bbb36a11d6338a0918 /gcc/ada/sem_ch4.adb | |
parent | 8cdd325744c3673a6939b9bbdabde4778feca96e (diff) | |
download | gcc-fef772a5d0656a9dfcf2f28240966406c6ee8eb7.tar.gz |
2004-04-06 Pascal Obry <obry@gnat.com>
* adaint.c (DIR_SEPARATOR): Properly set DIR_SEPARATOR on Win32.
* osint.adb (Program_Name): Do not look past a directory separator.
2004-04-06 Thomas Quinot <quinot@act-europe.fr>
* atree.adb: Update comment (Rewrite_Substitute_Node no longer exists).
* exp_ch6.adb (Rewrite_Function_Call): Clarify documentation of
requirement for preserving a copy of the original assignment node.
* sinfo.ads: Update comment (Original_Tree -> Original_Node).
2004-04-06 Olivier Hainque <hainque@act-europe.fr>
(__gnat_initialize [Vxworks]): Enable references to the crtstuff bits
when supported.
2004-04-06 Ed Schonberg <schonberg@gnat.com>
* sem_ch4.adb (Remove_Abstract_Operations): Extend previous changes to
operator calls in functional notation, and apply
Universal_Interpretation to operands, not to their type.
2004-04-06 Robert Dewar <dewar@gnat.com>
* 5wdirval.adb: Minor reformatting
2004-04-06 Ed Falis <falis@gnat.com>
* gnat_rm.texi: Improve a reference to the GCC manual
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@80453 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/sem_ch4.adb')
-rw-r--r-- | gcc/ada/sem_ch4.adb | 48 |
1 files changed, 39 insertions, 9 deletions
diff --git a/gcc/ada/sem_ch4.adb b/gcc/ada/sem_ch4.adb index 1ac9b4491fd..9388125aaf1 100644 --- a/gcc/ada/sem_ch4.adb +++ b/gcc/ada/sem_ch4.adb @@ -4359,20 +4359,18 @@ package body Sem_Ch4 is -- always added to the overload set, unless it is a universal -- operation. - if Nkind (N) in N_Op - and then Has_Abstract_Op - then + if not Has_Abstract_Op then + return; + + elsif Nkind (N) in N_Op then if Nkind (N) in N_Unary_Op - and then - Present (Universal_Interpretation (Etype (Right_Opnd (N)))) + and then Present (Universal_Interpretation (Right_Opnd (N))) then return; elsif Nkind (N) in N_Binary_Op - and then - Present (Universal_Interpretation (Etype (Right_Opnd (N)))) - and then - Present (Universal_Interpretation (Etype (Left_Opnd (N)))) + and then Present (Universal_Interpretation (Right_Opnd (N))) + and then Present (Universal_Interpretation (Left_Opnd (N))) then return; @@ -4386,6 +4384,38 @@ package body Sem_Ch4 is Get_Next_Interp (I, It); end loop; end if; + + elsif Nkind (N) = N_Function_Call + and then + (Nkind (Name (N)) = N_Operator_Symbol + or else + (Nkind (Name (N)) = N_Expanded_Name + and then + Nkind (Selector_Name (Name (N))) = N_Operator_Symbol)) + then + declare + Arg1 : constant Node_Id := First (Parameter_Associations (N)); + + begin + if Present (Universal_Interpretation (Arg1)) + or else + (Present (Next (Arg1)) + and then + Present (Universal_Interpretation (Next (Arg1)))) + then + return; + + else + Get_First_Interp (N, I, It); + while Present (It.Nam) loop + if Scope (It.Nam) = Standard_Standard then + Remove_Interp (I); + end if; + + Get_Next_Interp (I, It); + end loop; + end if; + end; end if; end if; end Remove_Abstract_Operations; |