diff options
author | Duncan Sands <baldrick@free.fr> | 2010-04-13 11:21:12 +0200 |
---|---|---|
committer | Duncan Sands <baldrick@gcc.gnu.org> | 2010-04-13 09:21:12 +0000 |
commit | 1a71080889e16d01cccd6af982386633dcec9ec9 (patch) | |
tree | 2e7193e1f194472c59b64196654c08335fa5e07d /gcc/ada/gcc-interface/trans.c | |
parent | 9602b6a1b8de60ca429f08ca00e2834d26fe1f47 (diff) | |
download | gcc-1a71080889e16d01cccd6af982386633dcec9ec9.zip gcc-1a71080889e16d01cccd6af982386633dcec9ec9.tar.gz gcc-1a71080889e16d01cccd6af982386633dcec9ec9.tar.bz2 |
Remove lang_eh_type_covers, which is dead, and the corresponding
Ada routine gnat_eh_type_covers.
From-SVN: r158258
Diffstat (limited to 'gcc/ada/gcc-interface/trans.c')
-rw-r--r-- | gcc/ada/gcc-interface/trans.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gcc/ada/gcc-interface/trans.c b/gcc/ada/gcc-interface/trans.c index 2c86db9..6da6e79 100644 --- a/gcc/ada/gcc-interface/trans.c +++ b/gcc/ada/gcc-interface/trans.c @@ -3279,11 +3279,7 @@ Exception_Handler_to_gnu_zcx (Node_Id gnat_node) handler can catch, with special cases for others and all others cases. Each exception type is actually identified by a pointer to the exception - id, or to a dummy object for "others" and "all others". - - Care should be taken to ensure that the control flow impact of "others" - and "all others" is known to GCC. lang_eh_type_covers is doing the trick - currently. */ + id, or to a dummy object for "others" and "all others". */ for (gnat_temp = First (Exception_Choices (gnat_node)); gnat_temp; gnat_temp = Next (gnat_temp)) { |