diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-07-08 10:05:45 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-07-08 10:05:45 +0200 |
commit | 3d9183967d29d4754b1fb9ed78b4b75a77fe155f (patch) | |
tree | 18dc61f15a5c2d320fddca9b79c9f9708b4009b0 /gcc/ada/errout.ads | |
parent | 6480338ae6d2350656b8c689df8af79c02ebc6be (diff) | |
download | gcc-3d9183967d29d4754b1fb9ed78b4b75a77fe155f.zip gcc-3d9183967d29d4754b1fb9ed78b4b75a77fe155f.tar.gz gcc-3d9183967d29d4754b1fb9ed78b4b75a77fe155f.tar.bz2 |
[multiple changes]
2013-07-08 Robert Dewar <dewar@adacore.com>
* gnatcmd.adb: Minor reformatting.
2013-07-08 Robert Dewar <dewar@adacore.com>
* targparm.adb (Get_Target_Parameters): Recognize pragma
Partition_Elaboration_Policy.
2013-07-08 Robert Dewar <dewar@adacore.com>
* gnat_ugn.texi: Minor update to mention partition elaboration policy.
2013-07-08 Ed Schonberg <schonberg@adacore.com>
* sem_ch4.adb (Comple_Object_Operation): Revert previous change.
(Analyze_Indexed_Component_Form): In ASIS mode, if node has been
transformed but not rewritten as a function call (as is the case
in a generic), analyze it as such.
2013-07-08 Thomas Quinot <quinot@adacore.com>
* gnat_rm.texi: Minor rewording: add missing word "operators"
in documentation for restriction No_Direct_Boolean_Operator.
2013-07-08 Robert Dewar <dewar@adacore.com>
* errout.adb (Set_Msg_Txt): No longer sets Is_Style_Msg,
Is_Warning_Msg, or Is_Unconditional_Msg (all are set elsewhere
now).
* errout.ads: Insertions ! and !! no longer have to be at the
end of the message, they can be anywhere in the message.
* erroutc.adb (Test_Style_Warning_Serious_Unconditional_Msg):
Replaces Test_Style_Warning_Serious_Msg
* erroutc.ads (Has_Double_Exclam): New flag New comments for
existing flags (Test_Style_Warning_Serious_Unconditional_Msg):
Replaces Test_Style_Warning_Serious_Msg
* errutil.adb (Test_Style_Warning_Serious_Unconditional_Msg):
Replaces Test_Style_Warning_Serious_Msg
From-SVN: r200765
Diffstat (limited to 'gcc/ada/errout.ads')
-rw-r--r-- | gcc/ada/errout.ads | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gcc/ada/errout.ads b/gcc/ada/errout.ads index 4b30a06..9afc4df 100644 --- a/gcc/ada/errout.ads +++ b/gcc/ada/errout.ads @@ -101,10 +101,9 @@ package Errout is -- messages. Warning messages are only suppressed for case 1, and -- when they come from other than the main extended unit. - -- This normal suppression action may be overridden in cases 2-5 (but not - -- in case 1) by setting All_Errors mode, or by setting the special - -- unconditional message insertion character (!) at the end of the message - -- text as described below. + -- This normal suppression action may be overridden in cases 2-5 (but + -- not in case 1) by setting All_Errors mode, or by setting the special + -- unconditional message insertion character (!) as described below. --------------------------------------------------------- -- Error Message Text and Message Insertion Characters -- @@ -230,7 +229,7 @@ package Errout is -- name is defined, this insertion character has no effect. -- Insertion character ! (Exclamation: unconditional message) - -- The character ! appearing as the last character of a message makes + -- The character ! appearing anywhere in the text of a message makes -- the message unconditional which means that it is output even if it -- would normally be suppressed. See section above for a description -- of the cases in which messages are normally suppressed. Note that @@ -249,7 +248,7 @@ package Errout is -- Insertion character !! (Double exclamation: unconditional warning) -- Normally warning messages issued in other than the main unit are - -- suppressed. If the message ends with !! then this suppression is + -- suppressed. If the message contains !! then this suppression is -- avoided. This is currently used by the Compile_Time_Warning pragma -- to ensure the message for a with'ed unit is output, and for warnings -- on ineffective back-end inlining, which is detected in units that |