diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 14:05:30 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-15 14:05:30 +0000 |
commit | 782c8d16e619ccb9017d2ace34c337426d1c2e3c (patch) | |
tree | c8c0214f8548fc9f765b31c6ab8a74a3686229ef /gcc/ada/usage.adb | |
parent | 049792bf885f2246036aa68cef550fd5d9192746 (diff) | |
download | gcc-782c8d16e619ccb9017d2ace34c337426d1c2e3c.tar.gz |
2005-11-14 Vincent Celier <celier@adacore.com>
* makegpr.adb (Gprmake): Do not attempt to build the global archive if
there is no object directory.
2005-11-14 Robert Dewar <dewar@adacore.com>
* usage.adb: Minor adjustment to output format, use nn instead of nnn
(so that -gnateInnn does not run into next column)
2005-11-14 Ed Falis <falis@adacore.com>
* s-bitops.adb (Bits_Array): corrected comment: "unconstrained" =>
"constrained"
2005-11-14 Cyrille Comar <comar@adacore.com>
* s-chepoo.ads: Add comments on Dereference.
Remove unnecessary inherited abstract primitives.
Cosmetic cleanup.
2005-11-14 Robert Dewar <dewar@adacore.com>
* sem_cat.ads (Validate_Access_Type_Declaration): Remove declaration
node parameter, not needed, since it is available as Declaration_Node.
2005-11-14 Geert Bosch <bosch@adacore.com>
* s-exnllf.adb (Exn_LLF): Fix comment to be more precise and
grammatically correct.
2005-11-14 Vincent Celier <celier@adacore.com>
* s-fileio.ads: Correct spelling error in comment
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107014 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/usage.adb')
-rw-r--r-- | gcc/ada/usage.adb | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index 39f3b71f5e0..1a2d902c272 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -162,7 +162,7 @@ begin -- Line for -gnateI switch - Write_Switch_Char ("eInnn"); + Write_Switch_Char ("eInn"); Write_Line ("Index in multi-unit source, e.g. -gnateI2"); -- Line for -gnatem switch @@ -213,7 +213,7 @@ begin -- Line for -gnatk switch Write_Switch_Char ("k"); - Write_Line ("Limit file names to nnn characters (k = krunch)"); + Write_Line ("Limit file names to nn characters (k = krunch)"); -- Line for -gnatl switch @@ -222,8 +222,8 @@ begin -- Line for -gnatm switch - Write_Switch_Char ("mnnn"); - Write_Line ("Limit number of detected errors to nnn (1-999999)"); + Write_Switch_Char ("mnn"); + Write_Line ("Limit number of detected errors to nn (1-999999)"); -- Line for -gnatn switch @@ -289,8 +289,8 @@ begin -- Line for -gnatT switch - Write_Switch_Char ("Tnnn"); - Write_Line ("All compiler tables start at nnn times usual starting size"); + Write_Switch_Char ("Tnn"); + Write_Line ("All compiler tables start at nn times usual starting size"); -- Line for -gnatu switch @@ -438,10 +438,10 @@ begin Write_Line (" i check if-then layout"); Write_Line (" k check casing rules for keywords"); Write_Line (" l check reference manual layout"); - Write_Line (" Lnnn check max nest level < nnn"); + Write_Line (" Lnn check max nest level < nn "); Write_Line (" m check line length <= 79 characters"); Write_Line (" n check casing of package Standard identifiers"); - Write_Line (" Mnnn check line length <= nnn characters"); + Write_Line (" Mnn check line length <= nn characters"); Write_Line (" o check subprogram bodies in alphabetical order"); Write_Line (" p check pragma casing"); Write_Line (" r check casing for identifier references"); |