diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-14 08:37:51 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-14 08:37:51 +0000 |
commit | 150564b2b4f5163e7fdf6249beec48291ce66491 (patch) | |
tree | eb32487d160f5457a47e310d937e95ab6a78e61e /gcc/ada/exp_intr.adb | |
parent | 93f0c209778b7b51d4a7c3df2c4872e27e661f32 (diff) | |
download | gcc-150564b2b4f5163e7fdf6249beec48291ce66491.tar.gz |
2007-08-14 Robert Dewar <dewar@adacore.com>
* comperr.adb: Fix problem with suppressing warning messages from gigi
* erroutc.ads, erroutc.adb, errout.ads,
errout.adb (Write_Eol): Remove trailing spaces before writing the line
(Write_Eol_Keep_Blanks): New procedure to write a line, including
possible trailing spaces.
(Output_Source_Line): Call Write_Eol_Keep_Blanks to output a source line
Fix problem with suppressing warning messages from back end
Improve handling of deleted warnings
* gnat1drv.adb:
Fix problem with suppressing warning messages from back end
Handle setting of Static_Dispatch_Tables flag.
* prepcomp.adb:
Fix problem with suppressing warning messages from back end
* exp_intr.adb: Improve handling of deleted warnings
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127413 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/exp_intr.adb')
-rw-r--r-- | gcc/ada/exp_intr.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/exp_intr.adb b/gcc/ada/exp_intr.adb index acbb8a792a8..dc36f4cc8f1 100644 --- a/gcc/ada/exp_intr.adb +++ b/gcc/ada/exp_intr.adb @@ -770,7 +770,7 @@ package body Exp_Intr is begin if No_Pool_Assigned (Rtyp) then - Error_Msg_N ("?deallocation from empty storage pool", N); + Error_Msg_N ("?deallocation from empty storage pool!", N); end if; -- Nothing to do if we know the argument is null |