diff options
| author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-05 09:30:53 +0000 |
|---|---|---|
| committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2008-08-05 09:30:53 +0000 |
| commit | d5a195306bb9a3343bc59a5794a4df588e7e882a (patch) | |
| tree | 949519cd7726e66ff86892b3f3b82cb7461eeb7f | |
| parent | 65b58a3257201b287e11c41f2b1f9705da5773c8 (diff) | |
| download | ppe42-gcc-d5a195306bb9a3343bc59a5794a4df588e7e882a.tar.gz ppe42-gcc-d5a195306bb9a3343bc59a5794a4df588e7e882a.zip | |
2008-08-05 Bob Duff <duff@adacore.com>
* sem_ch3.adb (Analyze_Object_Declaration): Avoid type Any_Access in
unresolved initial value of "null", because it causes implicitly
generated "=" operators to be ambiguous, and because this type should
not be passed to gigi.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@138693 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ada/ChangeLog | 45 | ||||
| -rw-r--r-- | gcc/ada/sem_ch3.adb | 9 |
2 files changed, 54 insertions, 0 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 505baed2f6b..9a4800006c7 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,48 @@ +2008-08-05 Jose Ruiz <ruiz@adacore.com> + + * init.c (__gnat_install_handler for linux): If we are building the + Xenomai run time then we need to do two additional things: avoid + memory swapping and transform the Linux environment task into a native + Xenomai task. + + * gcc-interface/Makefile.in (LIBGNAT_TARGET_PAIRS for xenomai run + time): Use interface to Xenomai native skin and avoid linux-specific + way of setting CPU affinity. + (EH_MECHANISM for the xenomai run time): Use sjlj exception mechanism. + +2008-08-05 Bob Duff <duff@adacore.com> + + * checks.ads: Minor comment fix + +2008-08-05 Thomas Quinot <quinot@adacore.com> + + * g-sercom.adb, g-sercom.ads, g-sercom-mingw.adb, + g-sercom-linux.adb (Data_Bits): Change literals B7 and B8 to CS7 and + CS8. + +2008-08-05 Robert Dewar <dewar@adacore.com> + + * mlib.adb: Minor code reorganization + Minor reformatting + + * make.adb: Minor reformatting + + * prj-attr.ads: Minor reformatting + + * s-os_lib.adb: Minor reformatting + + * s-fileio.adb: Minor code reorganization + Minor reformatting + + * prj.ads: Minor reformatting + +2008-08-05 Bob Duff <duff@adacore.com> + + * sem_ch3.adb (Analyze_Object_Declaration): Avoid type Any_Access in + unresolved initial value of "null", because it causes implicitly + generated "=" operators to be ambiguous, and because this type should + not be passed to gigi. + 2008-08-05 Vincent Celier <celier@adacore.com> * mlib.adb: Update comments. diff --git a/gcc/ada/sem_ch3.adb b/gcc/ada/sem_ch3.adb index 1543e254c89..cf31e49d545 100644 --- a/gcc/ada/sem_ch3.adb +++ b/gcc/ada/sem_ch3.adb @@ -2550,6 +2550,15 @@ package body Sem_Ch3 is Set_Etype (Id, T); Resolve (E, T); + -- If E is "null", and has been replaced by an + -- N_Raise_Constraint_Error node (which was marked already-analyzed), + -- we need to set the type to something other than Any_Access in + -- order to keep gigi happy. + + if Etype (E) = Any_Access then + Set_Etype (E, T); + end if; + -- If the object is an access to variable, the initialization -- expression cannot be an access to constant. |

