diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-06 10:18:16 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-06-06 10:18:16 +0000 |
commit | c6b4fc4978657d0e75d6cce5c0eaef97f8669285 (patch) | |
tree | 82394de02a1975c2f12ee1d2d138d5da654b88ed /gcc/ada/comperr.adb | |
parent | dd66774bff41c7bfc4f54f35fdecce5c1f3c85be (diff) | |
download | gcc-c6b4fc4978657d0e75d6cce5c0eaef97f8669285.tar.gz |
2007-04-20 Robert Dewar <dewar@adacore.com>
* comperr.adb (Compiler_Abort): New Finalize/Output_Messages interface
for Errout
* errout.adb: New Finalize/Compilation_Errors/Output_Messages
implementation
* errout.ads (Finalize): Changed interface
(Output_Messages): New procedure
(Compilation_Errors): New Interface
* prepcomp.ads, prepcomp.adb (Parse_Preprocessing_Data_File): New
Finalize/Output_Messages interface for Errout
(Prepare_To_Preprocess): New Finalize/Output_Messages interface for
Errout.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@125374 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/comperr.adb')
-rw-r--r-- | gcc/ada/comperr.adb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ada/comperr.adb b/gcc/ada/comperr.adb index e8a502c3fe7..9b89852c4b6 100644 --- a/gcc/ada/comperr.adb +++ b/gcc/ada/comperr.adb @@ -121,6 +121,7 @@ package body Comperr is if Serious_Errors_Detected /= 0 and then not Debug_Flag_K then Errout.Finalize; + Errout.Output_Messages; Set_Standard_Error; Write_Str ("compilation abandoned due to previous error"); |