summaryrefslogtreecommitdiff
path: root/gcc/ada/gprep.adb
diff options
context:
space:
mode:
authorcharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-17 06:47:15 +0000
committercharlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4>2014-07-17 06:47:15 +0000
commit316f8a9b2ab3bc228d662ccea7591c4afca76db6 (patch)
tree4d92ba93eaafdfb64c5c62d90193677f7811f7c7 /gcc/ada/gprep.adb
parent7a41db5b2e39bcfbf513612fbe4f23891f474f07 (diff)
downloadgcc-316f8a9b2ab3bc228d662ccea7591c4afca76db6.tar.gz
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. * a-tags.ads: Add comments about performance. * sprint.adb (Sprint_Node_Actual, case N_Object_Declaration): Print Etype of defining identifier, rather than the object definition. More information. 2014-07-17 Thomas Quinot <quinot@adacore.com> * exp_dist.adb: Minor documentation clarification. 2014-07-17 Hristian Kirtchev <kirtchev@adacore.com> * exp_util.adb (Is_Aliased): Revert previous change. 2014-07-17 Vincent Celier <celier@adacore.com> * g-comlin.adb (Try_Help): New procedure. (Getopt): Use new procedure Try_Help. * g-comlin.ads (Try_Help): New procedure. 2014-07-17 Bob Duff <duff@adacore.com> * gnat_ugn.texi: Minor update. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212728 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/gprep.adb')
-rw-r--r--gcc/ada/gprep.adb6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/gprep.adb b/gcc/ada/gprep.adb
index 63286cad1fc..c4bf8e91a52 100644
--- a/gcc/ada/gprep.adb
+++ b/gcc/ada/gprep.adb
@@ -209,7 +209,7 @@ package body GPrep is
if Argument_Count = 0 then
Usage;
else
- Put_Line ("type ""gnatprep --help"" for help");
+ GNAT.Command_Line.Try_Help;
end if;
return;
@@ -218,7 +218,7 @@ package body GPrep is
-- No output file specified, exit
- Put_Line ("type ""gnatprep --help"" for help");
+ GNAT.Command_Line.Try_Help;
return;
end if;
@@ -773,7 +773,7 @@ package body GPrep is
when GNAT.Command_Line.Invalid_Switch =>
Write_Str ("Invalid Switch: -");
Write_Line (GNAT.Command_Line.Full_Switch);
- Put_Line ("type ""gnatprep --help"" for help");
+ GNAT.Command_Line.Try_Help;
OS_Exit (1);
end;
end loop;