diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-10-23 14:40:50 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2015-10-23 14:40:50 +0200 |
commit | bf8f12c2a6b7c557031b431909fc831a6f6d7763 (patch) | |
tree | a452c80d9e404fbb92084ad2d5151b3dd861fd1a /gcc/ada/s-exctra.adb | |
parent | af29617a50b430ad3e9f2842fe31335d4488d1d3 (diff) | |
download | gcc-bf8f12c2a6b7c557031b431909fc831a6f6d7763.zip gcc-bf8f12c2a6b7c557031b431909fc831a6f6d7763.tar.gz gcc-bf8f12c2a6b7c557031b431909fc831a6f6d7763.tar.bz2 |
[multiple changes]
2015-10-23 Hristian Kirtchev <kirtchev@adacore.com>
* debug.adb: Switch -gnatd.5 is no longer in use, remove the
associated documentation.
* exp_dbug.adb (Get_External_Name): Do not add a special prefix
for ignored Ghost entities or when switch -gnatd.5 is enabled.
* exp_dbug.ads Remove the documentation concerning the encoding
of ignored Ghost entities.
2015-10-23 Bob Duff <duff@adacore.com>
* a-exextr.adb (Notify_Exception): For Unhandled_Raise_In_Main,
mimic the output from Ada.Exceptions.Last_Chance_Handler; don't
print "Exception raised".
* s-stalib.ads, s-exctra.ads, s-exctra.adb: Add
Unhandled_Raise_In_Main to types Exception_Trace_Kind/Trace_Kind.
From-SVN: r229246
Diffstat (limited to 'gcc/ada/s-exctra.adb')
-rw-r--r-- | gcc/ada/s-exctra.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/ada/s-exctra.adb b/gcc/ada/s-exctra.adb index c19807a..1d6cabf 100644 --- a/gcc/ada/s-exctra.adb +++ b/gcc/ada/s-exctra.adb @@ -114,6 +114,8 @@ package body System.Exception_Traces is Exception_Trace := Every_Raise; when Unhandled_Raise => Exception_Trace := Unhandled_Raise; + when Unhandled_Raise_In_Main => + Exception_Trace := Unhandled_Raise_In_Main; end case; end Trace_On; |