aboutsummaryrefslogtreecommitdiff
path: root/gcc/except.h
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2014-08-25 20:07:26 +0000
committerDavid Malcolm <dmalcolm@gcc.gnu.org>2014-08-25 20:07:26 +0000
commitbe7457df4dc64f828597185dddffe696e5290a21 (patch)
tree4a56aed3a629a01bea087203267f695747a1a94f /gcc/except.h
parent1455e88c11fb46029dc6e1769fd2183d45dec75a (diff)
downloadgcc-be7457df4dc64f828597185dddffe696e5290a21.zip
gcc-be7457df4dc64f828597185dddffe696e5290a21.tar.gz
gcc-be7457df4dc64f828597185dddffe696e5290a21.tar.bz2
struct eh_landing_pad_d: field "landing_pad" is an rtx_code_label
gcc/ * except.h (struct eh_landing_pad_d): Strengthen field "landing_pad" from rtx to rtx_code_label *. * except.c (sjlj_emit_dispatch_table): Likewise for param "dispatch_label" (sjlj_build_landing_pads): Likewise for local "dispatch_label". From-SVN: r214469
Diffstat (limited to 'gcc/except.h')
-rw-r--r--gcc/except.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/except.h b/gcc/except.h
index 24008e3..71a8dce 100644
--- a/gcc/except.h
+++ b/gcc/except.h
@@ -87,7 +87,7 @@ struct GTY(()) eh_landing_pad_d
EXCEPTION_RECEIVER pattern will be expanded here, as well as other
bookkeeping specific to exceptions. There must not be normal edges
into the block containing the landing-pad label. */
- rtx landing_pad;
+ rtx_code_label *landing_pad;
/* The index of this landing pad within fun->eh->lp_array. */
int index;