summaryrefslogtreecommitdiff
path: root/gcc/ada
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-17 06:49:11 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-17 06:49:11 +0000
commit05cb7beb3a083188a9495c03e2f70924264f96ea (patch)
treef7b9085babe7fc6529d4161bde49c9d848101545 /gcc/ada
parent316f8a9b2ab3bc228d662ccea7591c4afca76db6 (diff)
downloadgcc-05cb7beb3a083188a9495c03e2f70924264f96ea.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212729 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada')
-rw-r--r--gcc/ada/ChangeLog8
-rw-r--r--gcc/ada/g-comlin.adb5
-rw-r--r--gcc/ada/g-comlin.ads2
-rw-r--r--gcc/ada/gnat_ugn.texi5
4 files changed, 16 insertions, 4 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog
index 2105a7ea78f..fd13214279d 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 d472ee52958..20ee73ce650 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 109e83638b8..017edddde02 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 5d0c8e4d468..51a8bd48f2a 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.)