diff options
author | Bob Duff <duff@adacore.com> | 2007-12-13 11:23:29 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-12-13 11:23:29 +0100 |
commit | 6a1cb33a404025cb4d97876dd47e55c6800c6942 (patch) | |
tree | 740c5aba3c0949b0af4ce8a5af9213a4c4837b5f /gcc/ada/gnatfind.adb | |
parent | 16a55e63a98590ef71a37ff61c828c6b16bd75fb (diff) | |
download | gcc-6a1cb33a404025cb4d97876dd47e55c6800c6942.tar.gz |
clean.adb (Usage): Add line for -aP
2007-12-06 Bob Duff <duff@adacore.com>
* clean.adb (Usage): Add line for -aP
(Check_Version_And_Help): Change Check_Version_And_Help to be generic,
with a parameter "procedure Usage", instead of passing a pointer to a
procedure. This is to eliminate trampolines (since the Usage procedure
is often nested in a main procedure, and it would be inconvenient to
unnest it).
* g-comlin.adb (For_Each_Simple_Switch): Change For_Each_Simple_Switch
to be generic, with a parameter "procedure Callback (...)", instead of
passing a pointer to a procedure. This is to eliminate trampolines
(since the Callback procedure is usually nested).
* gnatfind.adb, switch.adb, switch.ads, gnatlink.adb, gnatls.adb,
gnatname.adb, gnatxref.adb, gnatchop.adb, gprep.adb, gnatbind.adb
(Check_Version_And_Help): Change Check_Version_And_Help to be generic.
* g-pehage.adb (Compute_Edges_And_Vertices, Build_Identical_Key_Sets):
Use the generic Heap_Sort_G instead of Heap_Sort_A.
From-SVN: r130824
Diffstat (limited to 'gcc/ada/gnatfind.adb')
-rw-r--r-- | gcc/ada/gnatfind.adb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ada/gnatfind.adb b/gcc/ada/gnatfind.adb index eece746fff3..21ba0cbc3ba 100644 --- a/gcc/ada/gnatfind.adb +++ b/gcc/ada/gnatfind.adb @@ -78,10 +78,15 @@ procedure Gnatfind is -------------------- procedure Parse_Cmd_Line is + + procedure Check_Version_And_Help is new Check_Version_And_Help_G (Usage); + + -- Start of processing for Parse_Cmd_Line + begin -- First check for --version or --help - Check_Version_And_Help ("GNATFIND", "1998", Usage'Unrestricted_Access); + Check_Version_And_Help ("GNATFIND", "1998"); -- Now scan the other switches |