diff options
Diffstat (limited to 'gcc/ada/usage.adb')
-rw-r--r-- | gcc/ada/usage.adb | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index f3bc06965b6..1da60acdee8 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -391,10 +391,10 @@ begin Write_Line (" O turn off warnings for address clause overlay"); Write_Line (" p turn on warnings for ineffective pragma Inline"); Write_Line (" P* turn off warnings for ineffective pragma Inline"); - Write_Line (" q turn on warnings for questionable " & - "missing paretheses"); - Write_Line (" Q* turn off warnings for questionable " & - "missing paretheses"); + Write_Line (" q* turn on warnings for questionable " & + "missing parentheses"); + Write_Line (" Q turn off warnings for questionable " & + "missing parentheses"); Write_Line (" r turn on warnings for redundant construct"); Write_Line (" R* turn off warnings for redundant construct"); Write_Line (" s suppress all warnings"); @@ -409,6 +409,8 @@ begin "assumption"); Write_Line (" x* turn on warnings for export/import"); Write_Line (" X turn off warnings for export/import"); + Write_Line (" .x* turn on warnings for non-local exceptions"); + 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 size/align warnings for " & @@ -452,6 +454,7 @@ begin Write_Line ("Enable selected style checks xx = list of parameters:"); Write_Line (" 1-9 check indentation"); Write_Line (" a check attribute casing"); + Write_Line (" A check array attribute indexes"); Write_Line (" b check no blanks at end of lines"); Write_Line (" c check comment format"); Write_Line (" d check no DOS line terminators"); @@ -472,7 +475,7 @@ begin Write_Line (" s check separate subprogram specs present"); Write_Line (" t check token separation rules"); Write_Line (" u check no unnecessary blank lines"); - Write_Line (" x check extra parens around conditionals"); + Write_Line (" x check extra parentheses around conditionals"); -- Lines for -gnatyN switch |