diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-29 15:30:02 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-07-29 15:30:02 +0200 |
commit | ab01e614837a76c828d7168bd34570beb69d7afc (patch) | |
tree | a13d4e97d170aea1ae20a7e9f582a348dce4a2bd /gcc/ada/a-except.adb | |
parent | a8b346d2ebe5538cf9492d101322620bbd4498d9 (diff) | |
download | gcc-ab01e614837a76c828d7168bd34570beb69d7afc.zip gcc-ab01e614837a76c828d7168bd34570beb69d7afc.tar.gz gcc-ab01e614837a76c828d7168bd34570beb69d7afc.tar.bz2 |
[multiple changes]
2014-07-29 Robert Dewar <dewar@adacore.com>
* einfo.adb (Derived_Type_Link): New function
(Set_Derived_Type_Link): New procedure.
(Write_Field31_Name): Output Derived_Type_Link.
* einfo.ads: New field Derived_Type_Link.
* exp_ch6.adb (Expand_Call): Warn if change of representation
needed on call.
* sem_ch13.adb: Minor addition of ??? comment.
(Rep_Item_Too_Late): Warn on case that is legal but could cause an
expensive implicit conversion.
* sem_ch3.adb (Build_Derived_Type): Set Derived_Type_Link if needed.
2014-07-29 Hristian Kirtchev <kirtchev@adacore.com>
* exp_ch3.adb (Build_Init_Procedure): Renamed Local_DF_Id
to DF_Id. Add new local variable DF_Call. Do not perform any
elaboration-related checks on the call to the partial finalization
routine within an init proc to avoid generating bogus elaboration
warnings on expansion-related code.
* sem_elab.adb (Check_A_Call): Move constant Access_Case to
the top level of the routine. Ensure that Output_Calls takes
into account flags -gnatel and -gnatwl when emitting warnings
or info messages.
(Check_Internal_Call_Continue): Update the call to Output_Calls.
(Elab_Warning): Moved to the top level of routine Check_A_Call.
(Emit): New routines.
(Output_Calls): Add new formal parameter Check_Elab_Flag along with a
comment on usage. Output all warnings or info messages only when the
caller context demands it and the proper elaboration flag is set.
2014-07-29 Yannick Moy <moy@adacore.com>
* sem_attr.adb (Analyze_Attribute/Attribute_Old):
Check rule about Old appearing in potentially unevaluated
expression everywhere, not only in Post.
2014-07-29 Arnaud Charlet <charlet@adacore.com>
* sem_prag.adb: Update comment.
* a-except.adb, a-except-2005.adb: Minor editing.
2014-07-29 Pierre-Marie Derodat <derodat@adacore.com>
* exp_dbug.adb (Debug_Renaming_Declaration):
Do not create renaming entities for renamings of non-packed
objects and for exceptions.
From-SVN: r213175
Diffstat (limited to 'gcc/ada/a-except.adb')
-rw-r--r-- | gcc/ada/a-except.adb | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/gcc/ada/a-except.adb b/gcc/ada/a-except.adb index 6163204..dbde478 100644 --- a/gcc/ada/a-except.adb +++ b/gcc/ada/a-except.adb @@ -360,6 +360,17 @@ package body Ada.Exceptions is -- attached. The parameters are the file name and line number in each -- case. The names are defined by Exp_Ch11.Get_RT_Exception_Name. + -- Note on ordering of these routines. Normally in the Ada.Exceptions units + -- we don't care about the ordering of entries for Rcheck routines, and + -- the normal approach is to keep them in the same order as declarations + -- in Types. + + -- This section is an IMPORTANT EXCEPTION. It is essential that the + -- routines in this section be declared in the same order as the Rmsg_xx + -- constants in the following section. This is required by the .Net runtime + -- which uses the exceptmsg.awk script to generate require exception data, + -- and this script requires and expects that this ordering rule holds. + procedure Rcheck_CE_Access_Check (File : System.Address; Line : Integer); procedure Rcheck_CE_Null_Access_Parameter @@ -418,8 +429,6 @@ package body Ada.Exceptions is (File : System.Address; Line : Integer); procedure Rcheck_PE_Potentially_Blocking_Operation (File : System.Address; Line : Integer); - procedure Rcheck_PE_Stream_Operation_Not_Allowed - (File : System.Address; Line : Integer); procedure Rcheck_PE_Stubbed_Subprogram_Called (File : System.Address; Line : Integer); procedure Rcheck_PE_Unchecked_Union_Restriction @@ -432,6 +441,8 @@ package body Ada.Exceptions is (File : System.Address; Line : Integer); procedure Rcheck_SE_Object_Too_Large (File : System.Address; Line : Integer); + procedure Rcheck_PE_Stream_Operation_Not_Allowed + (File : System.Address; Line : Integer); procedure Rcheck_PE_Finalize_Raised_Exception (File : System.Address; Line : Integer); |