diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-26 14:02:25 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-26 14:02:25 +0000 |
commit | 2a62ce00f61d26370c9b174c98dbd2f5136082bd (patch) | |
tree | 59c491e0f19bb78d378921368031f1c50cd5dae0 /gcc/ada/usage.adb | |
parent | a34480d83b68142f300347d89d233f971438cf5d (diff) | |
download | gcc-2a62ce00f61d26370c9b174c98dbd2f5136082bd.tar.gz |
2010-01-26 Thomas Quinot <quinot@adacore.com>
* gnat_ugn.texi: Adjust documentation of -gnatz switches.
* usage.adb: Replace line for -gnatz with two lines for -gnatzc and
-gnatzr.
2010-01-26 Vincent Celier <celier@adacore.com>
* prj-attr.adb: Add new attribute Library_Install_Name_Option
Replace attribute Run_Path_Origin_Supported with Run_Path_Origin
* prj-nmsc.adb (Process_Project_Level_Simple_Attributes): Process
attributes Run_Path_Option and Library_Install_Name_Option.
* prj.ads (Project_Configuration): Replace component
Run_Path_Origin_Supported with component Run_Path_Origin. Add new
component Library_Install_Name_Option.
* snames.ads-tmpl: Add new standard name Library_Install_Name_Option
Replace Run_Path_Origin_Supported with Run_Path_Origin
2010-01-26 Ed Schonberg <schonberg@adacore.com>
* sem_ch8.adb (Use_One_Package): Within an instance, an actual package
is not hidden by a homograph declared in another actual package.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156248 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/usage.adb')
-rw-r--r-- | gcc/ada/usage.adb | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ada/usage.adb b/gcc/ada/usage.adb index 8b0d0cba4e3..1840ade33b7 100644 --- a/gcc/ada/usage.adb +++ b/gcc/ada/usage.adb @@ -563,10 +563,15 @@ begin Write_Switch_Char ("yN"); Write_Line ("Cancel all previously set style checks"); - -- Lines for -gnatz switch + -- Lines for -gnatzc switch - Write_Switch_Char ("z"); - Write_Line ("Distribution stub generation (r/c for receiver/caller stubs)"); + Write_Switch_Char ("zc"); + Write_Line ("Distribution stub generation for caller stubs"); + + -- Lines for -gnatzr switch + + Write_Switch_Char ("zr"); + Write_Line ("Distribution stub generation for receiver stubs"); -- Line for -gnat83 switch |