summaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index 3bbea3f52f0..7e49ee0f949 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -584,6 +584,14 @@ print_node (file, prefix, node, indent)
break;
case 'b':
+ if (BLOCK_ABSTRACT (node))
+ fprintf (file, " abstract");
+ if (BLOCK_HANDLER_BLOCK (node))
+ fprintf (file, " handler-block");
+ if (BLOCK_DEAD (node))
+ fprintf (file, " dead");
+ fprintf (file, " block-number %d", BLOCK_NUMBER (node));
+
print_node (file, "vars", BLOCK_VARS (node), indent + 4);
print_node (file, "supercontext", BLOCK_SUPERCONTEXT (node), indent + 4);
print_node (file, "subblocks", BLOCK_SUBBLOCKS (node), indent + 4);