diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-17 08:49:11 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-17 08:49:11 +0200 |
commit | 44ccf4b4581279ffadfe20bc20f34f6a8dd05a53 (patch) | |
tree | f7b9085babe7fc6529d4161bde49c9d848101545 | |
parent | bb01279084cc4ed7c7894d16be6af502fb5ad914 (diff) | |
download | gcc-44ccf4b4581279ffadfe20bc20f34f6a8dd05a53.zip gcc-44ccf4b4581279ffadfe20bc20f34f6a8dd05a53.tar.gz gcc-44ccf4b4581279ffadfe20bc20f34f6a8dd05a53.tar.bz2 |
[multiple changes]
2014-07-17 Robert Dewar <dewar@adacore.com>
* g-comlin.ads, g-comlin.adb: Minor clean up.
2014-07-17 Bob Duff <duff@adacore.com>
* gnat_ugn.texi: Update gnatpp doc.
From-SVN: r212729
-rw-r--r-- | gcc/ada/ChangeLog | 8 | ||||
-rw-r--r-- | gcc/ada/g-comlin.adb | 5 | ||||
-rw-r--r-- | gcc/ada/g-comlin.ads | 2 | ||||
-rw-r--r-- | gcc/ada/gnat_ugn.texi | 5 |
4 files changed, 16 insertions, 4 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 2105a7e..fd13214 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,5 +1,13 @@ 2014-07-17 Robert Dewar <dewar@adacore.com> + * g-comlin.ads, g-comlin.adb: Minor clean up. + +2014-07-17 Bob Duff <duff@adacore.com> + + * gnat_ugn.texi: Update gnatpp doc. + +2014-07-17 Robert Dewar <dewar@adacore.com> + * gnat_rm.texi: Document new restriction No_Long_Long_Integers. * exp_ch4.adb (Make_Array_Comparison_Op): Add note that we could do this by actually expanding a real generic. diff --git a/gcc/ada/g-comlin.adb b/gcc/ada/g-comlin.adb index d472ee5..20ee73c 100644 --- a/gcc/ada/g-comlin.adb +++ b/gcc/ada/g-comlin.adb @@ -3596,9 +3596,8 @@ package body GNAT.Command_Line is begin Put_Line (Standard_Error, - "try `" & - Base_Name (Ada.Command_Line.Command_Name) & - " --help` for more information."); + "try """ & Base_Name (Ada.Command_Line.Command_Name) + & " --help"" for more information."); end Try_Help; end GNAT.Command_Line; diff --git a/gcc/ada/g-comlin.ads b/gcc/ada/g-comlin.ads index 109e836..017eddd 100644 --- a/gcc/ada/g-comlin.ads +++ b/gcc/ada/g-comlin.ads @@ -1005,7 +1005,7 @@ package GNAT.Command_Line is -- the executable. This procedure should only be called when the executable -- accepts switch --help. When this procedure is called by executable xxx, -- the following message is displayed on standard error: - -- try `xxx --help` for more information. + -- try "xxx --help" for more information. private diff --git a/gcc/ada/gnat_ugn.texi b/gcc/ada/gnat_ugn.texi index 5d0c8e4..51a8bd4 100644 --- a/gcc/ada/gnat_ugn.texi +++ b/gcc/ada/gnat_ugn.texi @@ -15208,6 +15208,11 @@ options: on have been modified. This is similar to the way gnatmake/gprbuild only compiles files that need to be recompiled. +-j@var{n} -- In @option{--incremental} mode, use @var{n} @command{gnat2xml} + processes to perform XML generation in parallel. If @var{n} is 0, then + the maximum number of parallel tree creations is the number of core + processors on the platform. + --output-dir=@var{dir} -- generate one .xml file for each Ada source file, in directory @file{dir}. (Default is to generate the XML to standard output.) |