diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-09-05 09:46:59 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-09-05 09:46:59 +0200 |
commit | 1a2c495da918ad782b233126773e4fc34bdacbe5 (patch) | |
tree | c8c4bdeea1597cf43807ca89f524b62979d2208c /gcc/ada/raise.h | |
parent | 3b91d88ea1deb4d40b294c12536cbfc9f8137d54 (diff) | |
download | gcc-1a2c495da918ad782b233126773e4fc34bdacbe5.tar.gz |
re PR ada/23646 (Ada testsuite hangs -- many new failures)
PR ada/23646
* s-mastop-tru64.adb, s-mastop-irix.adb, s-mastop-vms.adb
(Enter_Handler, Set_Signal_Machine_State): Removed, no longer used.
Remove reference to System.Exceptions.
* s-mastop-x86.adb: Removed, no longer used.
* s-traceb-mastop.adb: Adjust calls to Pop_Frame.
* a-excach.adb: Minor reformatting.
* a-except.ads, a-except.adb: Remove global Warnings (Off) pragma, and
instead fix new warnings that were hidden by this change.
(AAA, ZZZ): Removed, replaced by...
(Code_Address_For_AAA, Code_Address_For_ZZZ): ... these functions, who
are used instead of constants, to help make Ada.Exception truly
preelaborate.
(Rcheck_*, Raise_Constraint_Error, Raise_Program_Error,
Raise_Storage_Error): File is now a System.Address, to simplify code.
(Elab code): Removed, no longer used.
(Null_Occurrence): Remove Warnings Off and make this construct
preelaborate.
Remove code related to front-end zero cost exception handling, since
it is no longer used.
Remove -gnatL/-gnatZ switches.
* a-exexda.adb (Append_Info_Exception_Name, Set_Exception_C_Msg):
Update use of Except.Msg.
* gnat1drv.adb, inline.adb, bindgen.adb, debug.adb, exp_ch11.ads,
freeze.adb, frontend.adb, lib.adb, exp_ch11.adb: Remove code related
to front-end zero cost exception handling, since it is no longer used.
Remove -gnatL/-gnatZ switches.
* lib-writ.ads: Minor reformatting
Remove doc of UX
* Makefile.rtl: Remove references to s-except*, s-mastop-x86*
* Make-lang.in: Remove references to s-except.ads
* s-except.ads: Removed, no longer used.
* s-mastop.ads, s-mastop.adb:
(Enter_Handler, Set_Signal_Machine_State): Removed, no longer used.
Remove reference to System.Exceptions.
* raise.h, usage.adb, targparm.adb, targparm.ads, switch-m.adb,
switch-b.adb: Remove code related to front-end zero cost exception
handling, since it is no longer used.
Remove -gnatL/-gnatZ switches.
From-SVN: r103848
Diffstat (limited to 'gcc/ada/raise.h')
-rw-r--r-- | gcc/ada/raise.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ada/raise.h b/gcc/ada/raise.h index 7087c1c42ca..5dd26926279 100644 --- a/gcc/ada/raise.h +++ b/gcc/ada/raise.h @@ -31,16 +31,18 @@ ****************************************************************************/ +/* C counterparts of what System.Standard_Library defines. */ + typedef unsigned Exception_Code; -/* C counterpart of what System.Standard_Library defines. */ struct Exception_Data { - char Handled_By_Others; + char Not_Handled_By_Others; char Lang; int Name_Length; - char *Full_Name, Htable_Ptr; + char *Full_Name, *Htable_Ptr; Exception_Code Import_Code; + void (*Raise_Hook)(void); }; typedef struct Exception_Data *Exception_Id; |