diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-16 18:22:44 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-16 18:22:44 +0200 |
commit | 3f165ff29a1aec939b43a498b1899b21bc50366b (patch) | |
tree | 7cdb6c0c44a144335a51c7b24e7cbbc5e60d9fad /gcc/ada/usage.adb | |
parent | c249a7bc843dc407280d91a448d2e3f2e16370d7 (diff) | |
download | gcc-3f165ff29a1aec939b43a498b1899b21bc50366b.tar.gz |
[multiple changes]
2010-06-16 Javier Miranda <miranda@adacore.com>
* exp_disp.adb (Expand_Dispatching_Call): Adjust the decoration of the
node referenced by the SCIL node of dispatching "=" to skip the tags
comparison.
2010-06-16 Ed Schonberg <schonberg@adacore.com>
* sem_ch5.adb (Analyze_Exit_Statement): Return if no enclosing loop,
to prevent cascaded errors and compilation aborts.
2010-06-16 Robert Dewar <dewar@adacore.com>
* back_end.adb (Switch_Subsequently_Cancelled): New function
Move declarations to package body level to support this change
* back_end.ads (Switch_Subsequently_Cancelled): New function
* gnat_ugn.texi: Document -gnat-p switch
* switch-c.adb (Scan_Front_End_Switches): Implement -gnat-p switch
* ug_words: Add entry for -gnat-p (UNSUPPRESS_ALL)
* usage.adb: Add line for -gnat-p switch
* vms_data.ads: Add entry for UNSUPPRESS_ALL (-gnat-p)
2010-06-16 Robert Dewar <dewar@adacore.com>
* sem_warn.adb (Check_Infinite_Loop_Warning): Declaration counts as
modification.
From-SVN: r160847
Diffstat (limited to 'gcc/ada/usage.adb')
-rw-r--r-- | gcc/ada/usage.adb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index 9e2b3c43f85..87d2735e61e 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -598,4 +598,9 @@ begin Write_Line ("Allow Ada 2005 extensions"); end if; + -- Line for -gnat-p switch + + Write_Switch_Char ("-p"); + Write_Line ("Cancel effect of previous -gnatp switch"); + end Usage; |