diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-10-13 12:13:36 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-10-13 12:13:36 +0200 |
commit | e192a2cd62f2ed824f93edab18d9a5aabf764784 (patch) | |
tree | 731bb955325533b2b0c1662f3a2e9445eba13ef4 /gcc/ada/bindgen.adb | |
parent | 54c42edf79e7319010b7efa0a1e78acabb0205bd (diff) | |
download | gcc-e192a2cd62f2ed824f93edab18d9a5aabf764784.zip gcc-e192a2cd62f2ed824f93edab18d9a5aabf764784.tar.gz gcc-e192a2cd62f2ed824f93edab18d9a5aabf764784.tar.bz2 |
[multiple changes]
2011-10-13 Thomas Quinot <quinot@adacore.com>
* par-ch2.adb, par.adb, par-util.adb, par-ch3.adb
(Check_Future_Identifier): New subprogram,
factors duplicated code from Par.Ch2.P_Identifier and
Par.Ch3.P_Defining_Identifier.
2011-10-13 Thomas Quinot <quinot@adacore.com>
* s-taprop-posix.adb (Initialize): Always raise Storage_Error
if we fail to initialize CV attributes or CV.
2011-10-13 Thomas Quinot <quinot@adacore.com>
* s-tasren.adb (Timed_Selective_Wait, case
Accept_Alternative_Selected): Use Defer_Abort_Nestable, since
we know abortion is already deferred.
2011-10-13 Hristian Kirtchev <kirtchev@adacore.com>
* exp_ch3.adb (Build_Class_Wide_Master): Moved to exp_ch9.
(Build_Master_Renaming (function)): Removed.
(Build_Master_Renaming (procedure)): Moved to exp_ch9.
(Expand_Full_Type_Declaration): Alphabetize
variables. Reformatting of code and comments. Rewrite the
section on processing of anonymous access-to-task types in
record components.
* exp_ch3.ads (Build_Class_Wide_Master): Moved to exp_ch9.
(Build_Master_Renaming): Moved to exp_ch9.
* exp_ch9.adb (Build_Class_Wide_Master): Moved from exp_ch3.
(Build_Master_Entity): Add formal parameter
Use_Current. Reformatting of code and comments.
(Build_Master_Renaming): Moved from exp_ch3.
* exp_ch9.ads (Build_Class_Wide_Master): Moved from
exp_ch3. Update comment on usage.
(Build_Master_Entity):
Add formal parameter Use_Current. Update comment on usage.
(Build_Master_Renaming): Moved from exp_ch3.
* sem_ch3.adb (Access_Definition): Remove redundant code to
create a _master and a renaming.
2011-10-13 Ed Schonberg <schonberg@adacore.com>
* lib-xref.adb: Do no emit reference to overridden operation,
if it is internally generated.
2011-10-13 Vincent Celier <celier@adacore.com>
* bindgen.adb: Remove any processing related to g-trasym
* Makefile.rtl: Add g-trasym.o to GNATRTL_NONTASKING_OBJS
* mlib-prj.adb: Remove any processing related to g-trasym.
From-SVN: r179898
Diffstat (limited to 'gcc/ada/bindgen.adb')
-rw-r--r-- | gcc/ada/bindgen.adb | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/gcc/ada/bindgen.adb b/gcc/ada/bindgen.adb index f5a2bdc..d75fe06 100644 --- a/gcc/ada/bindgen.adb +++ b/gcc/ada/bindgen.adb @@ -1893,25 +1893,6 @@ package body Bindgen is Write_Str (Name_Buffer (1 .. Name_Len)); Write_Eol; end if; - - -- Don't link with the shared library on VMS if an internal - -- filename object is seen. Multiply defined symbols will - -- result. - - if OpenVMS_On_Target - and then Is_Internal_File_Name - (ALIs.Table - (Units.Table (Elab_Order.Table (E)).My_ALI).Sfile) - then - -- Special case for g-trasym.obj (not included in libgnat) - - Get_Name_String (ALIs.Table - (Units.Table (Elab_Order.Table (E)).My_ALI).Sfile); - - if Name_Buffer (1 .. 8) /= "g-trasym" then - Opt.Shared_Libgnat := False; - end if; - end if; end if; end if; end loop; |