From 1d65f45cfaefa060737af130c3fc69afb3030980 Mon Sep 17 00:00:00 2001 From: Richard Henderson Date: Mon, 14 Sep 2009 12:18:58 -0700 Subject: Squash commit of EH in gimple From-SVN: r151696 --- gcc/print-tree.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gcc/print-tree.c') diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 26f467cba8e..1d66769a1f7 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -393,6 +393,8 @@ print_node (FILE *file, const char *prefix, tree node, int indent) if (code == LABEL_DECL && DECL_ERROR_ISSUED (node)) fputs (" error-issued", file); + if (code == LABEL_DECL && EH_LANDING_PAD_NR (node)) + fprintf (file, " landing-pad:%d", EH_LANDING_PAD_NR (node)); if (code == VAR_DECL && DECL_IN_TEXT_SECTION (node)) fputs (" in-text-section", file); -- cgit v1.2.1