diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-04 12:18:16 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-04 12:18:16 +0000 |
commit | 2e8eadb7d7c9ca459e102ce688e4bbf530ea11e7 (patch) | |
tree | ff41142304d473e9b7109fb745e031524cc73de5 /gcc/ada/exp_ch7.adb | |
parent | 30ff3030a38f71250119a35ca85e15eda8808f47 (diff) | |
download | gcc-2e8eadb7d7c9ca459e102ce688e4bbf530ea11e7.tar.gz |
2011-08-04 Arnaud Charlet <charlet@adacore.com>
* make.adb (Do_Codepeer_Globalize_Step): Removed. Use CodePeer_Mode
instead.
(CodePeer_Mode_String): New.
(Linking_Phase, Binding_Phase): Call gnatlink with -P switch in
CodePeer mode.
(Scan_Make_Arg): Do not disable binding/linking phase in CodePeer mode.
* bindgen.adb (Gen_Elab_Calls_Ada): Ignore subprograms in CodePeer
mode, since no useful elaboration subprogram is needed by CodePeer.
* gnatlink.adb (Gnatlink): Add support for -P switch (CodePeer mode).
In this mode, compile binder file with -gnatC and do stop after this
step.
2011-08-04 Vincent Celier <celier@adacore.com>
* exp_ch7.adb: Minor comment fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177366 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/exp_ch7.adb')
-rw-r--r-- | gcc/ada/exp_ch7.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/exp_ch7.adb b/gcc/ada/exp_ch7.adb index 0c570f61b77..5dad689c1f0 100644 --- a/gcc/ada/exp_ch7.adb +++ b/gcc/ada/exp_ch7.adb @@ -4079,7 +4079,7 @@ package body Exp_Ch7 is function Get_Global_Pool_For_Access_Type (T : Entity_Id) return Entity_Id is begin -- Access types whose size is smaller than System.Address size can - -- exit only on VMS. We can't use the usual global pool which returns + -- exist only on VMS. We can't use the usual global pool which returns -- an object of type Address as truncation will make it invalid. -- To handle this case, VMS has a dedicated global pool that returns -- addresses that fit into 32 bit accesses. |