diff options
Diffstat (limited to 'gcc/ada/usage.adb')
-rw-r--r-- | gcc/ada/usage.adb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index fb261e5..2afd3fc 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2019, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -418,11 +418,6 @@ begin Write_Switch_Char ("S"); Write_Line ("Print listing of package Standard"); - -- Line for -gnatt switch - - Write_Switch_Char ("t"); - Write_Line ("Tree output file to be generated"); - -- Line for -gnatTnn switch Write_Switch_Char ("Tnn"); @@ -495,6 +490,10 @@ begin Write_Line (" C* turn off warnings for constant conditional"); Write_Line (" .c+ turn on warnings for unrepped components"); Write_Line (" .C* turn off warnings for unrepped components"); + Write_Line (" _c* turn on warnings for unknown " & + "Compile_Time_Warning"); + Write_Line (" _C turn off warnings for unknown " & + "Compile_Time_Warning"); Write_Line (" d turn on warnings for implicit dereference"); Write_Line (" D* turn off warnings for implicit dereference"); Write_Line (" .d turn on tagging of warnings with -gnatw switch"); @@ -571,6 +570,8 @@ begin Write_Line (" R* turn off warnings for redundant construct"); Write_Line (" .r+ turn on warnings for object renaming function"); Write_Line (" .R* turn off warnings for object renaming function"); + Write_Line (" _r turn on warnings for components out of order"); + Write_Line (" _R turn off warnings for components out of order"); Write_Line (" s suppress all info/warnings"); Write_Line (" .s turn on warnings for overridden size clause"); Write_Line (" .S* turn off warnings for overridden size clause"); |