diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-08-04 11:36:26 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-08-04 11:36:26 +0200 |
commit | f2170041e1db5fbc2809310d2eba081f41f94403 (patch) | |
tree | eb5735638d8006ffae9a6eaeb4dd1fd4abb2a0bb /gcc | |
parent | 53cf46009d6ebd3039582eda6efa8676dc27c001 (diff) | |
download | gcc-f2170041e1db5fbc2809310d2eba081f41f94403.zip gcc-f2170041e1db5fbc2809310d2eba081f41f94403.tar.gz gcc-f2170041e1db5fbc2809310d2eba081f41f94403.tar.bz2 |
usage.adb (Usage): Minor rewording of -gnatwz switch, to improve gnatcheck support in GPS.
2008-08-04 Arnaud Charlet <charlet@adacore.com>
* usage.adb (Usage): Minor rewording of -gnatwz switch, to improve
gnatcheck support in GPS.
From-SVN: r138592
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/usage.adb | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index 5a1f482..e4a9446 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -167,6 +167,11 @@ begin Write_Switch_Char ("ef"); Write_Line ("Full source path in brief error messages"); + -- Line for -gnateG switch + + Write_Switch_Char ("eG"); + Write_Line ("Generate preprocessed source"); + -- Line for -gnateI switch Write_Switch_Char ("eInn"); @@ -450,10 +455,10 @@ begin Write_Line (" .X* turn off warnings for non-local exceptions"); Write_Line (" y* turn on warnings for Ada 2005 incompatibility"); Write_Line (" Y turn off warnings for Ada 2005 incompatibility"); - Write_Line (" z* turn on convention/size/align warnings for " & - "unchecked conversion"); - Write_Line (" Z turn off convention/size/align warnings for " & - "unchecked conversion"); + Write_Line (" z* turn on warnings for convention/size/align " & + "mismatch on unchecked conversion"); + Write_Line (" Z turn off warnings for convention/size/align " & + "mismatch on unchecked conversion"); Write_Line (" * indicates default in above list"); -- Line for -gnatW switch |