aboutsummaryrefslogtreecommitdiff
path: root/gcc/function.h
diff options
context:
space:
mode:
authorRichard Henderson <rth@redhat.com>2009-09-14 19:18:58 +0000
committerRichard Henderson <rth@redhat.com>2009-09-14 19:18:58 +0000
commitcaa38b105c85513677ec88fa88b5b5ac443052a7 (patch)
tree2fcbbb5f99b13293753d83230cf9f4e0893a9b51 /gcc/function.h
parente2dda513a2c01e86fa4c8496e2646dabe78d7189 (diff)
Squash commit of EH in gimple
git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@151696 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/function.h')
-rw-r--r--gcc/function.h11
1 files changed, 2 insertions, 9 deletions
diff --git a/gcc/function.h b/gcc/function.h
index 446bc9d82e1..72aad0006dc 100644
--- a/gcc/function.h
+++ b/gcc/function.h
@@ -24,7 +24,7 @@ along with GCC; see the file COPYING3. If not see
#include "tree.h"
#include "hashtab.h"
-#include "varray.h"
+#include "vecprim.h"
/* Stack of pending (incomplete) sequences saved by `start_sequence'.
Each element describes one pending sequence.
@@ -144,11 +144,6 @@ DEF_VEC_ALLOC_P(call_site_record, gc);
/* RTL representation of exception handling. */
struct GTY(()) rtl_eh {
- rtx filter;
- rtx exc_ptr;
-
- int built_landing_pads;
-
rtx ehr_stackadj;
rtx ehr_handler;
rtx ehr_label;
@@ -156,9 +151,7 @@ struct GTY(()) rtl_eh {
rtx sjlj_fc;
rtx sjlj_exit_after;
- VEC(tree,gc) *ttype_data;
- varray_type ehspec_data;
- varray_type action_record_data;
+ VEC(uchar,gc) *action_record_data;
VEC(call_site_record,gc) *call_site_record[2];
};