diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-01-22 17:42:55 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-01-22 17:42:55 +0100 |
commit | d4129bfa7c814dc1878c3256d34f721398617255 (patch) | |
tree | dc63d9b4da41b673443db809263374c24fbe04a9 /gcc/ada/debug.adb | |
parent | b6f36bf8c74b6341566254227d2ac425bf4a54fc (diff) | |
download | gcc-d4129bfa7c814dc1878c3256d34f721398617255.zip gcc-d4129bfa7c814dc1878c3256d34f721398617255.tar.gz gcc-d4129bfa7c814dc1878c3256d34f721398617255.tar.bz2 |
[multiple changes]
2014-01-22 Robert Dewar <dewar@adacore.com>
* debug.adb, exp_ch4.adb, erroutc.adb: Minor reformatting.
2014-01-22 Thomas Quinot <quinot@adacore.com>
* sem_ch7.adb, sem_ch8.adb, exp_ch3.adb: Minor reformatting.
2014-01-22 Thomas Quinot <quinot@adacore.com>
* sem_ch3.adb (Analyze_Object_Declaration): For a constant
declaration initialized with a function call, whose type
has variable size, need to remove side effects so that the
initialization expression becomes a dereference of a temporary
reference to the function result.
From-SVN: r206928
Diffstat (limited to 'gcc/ada/debug.adb')
-rw-r--r-- | gcc/ada/debug.adb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/debug.adb b/gcc/ada/debug.adb index 4cc8feb..b1c17f8 100644 --- a/gcc/ada/debug.adb +++ b/gcc/ada/debug.adb @@ -596,7 +596,10 @@ package body Debug is -- d.E Turn selected errors into warnings. This debug switch causes a -- specific set of error messages into warnings. Setting this switch - -- causes Opt.Error_To_Warning to be set to True. + -- causes Opt.Error_To_Warning to be set to True. Right now the only + -- error affected is the case of overlapping subprogram parameters + -- which has become illegal in Ada 2012, but only generates a warning + -- in earlier versions of Ada. -- d.F Sets GNATprove_Mode to True. This allows debugging the frontend in -- the special mode used by GNATprove. |