diff options
Diffstat (limited to 'contrib/gcc/print-tree.c')
-rw-r--r-- | contrib/gcc/print-tree.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/contrib/gcc/print-tree.c b/contrib/gcc/print-tree.c index 6163b1f..18ec929 100644 --- a/contrib/gcc/print-tree.c +++ b/contrib/gcc/print-tree.c @@ -1,5 +1,5 @@ /* Prints out tree in human readable form - GNU C-compiler - Copyright (C) 1990, 91, 93, 94, 95, 96, 1997 Free Software Foundation, Inc. + Copyright (C) 1990, 91, 93-97, 1998 Free Software Foundation, Inc. This file is part of GNU CC. @@ -64,7 +64,7 @@ debug_tree (node) void print_node_brief (file, prefix, node, indent) FILE *file; - char *prefix; + const char *prefix; tree node; int indent; { @@ -176,7 +176,7 @@ indent_to (file, column) void print_node (file, prefix, node, indent) FILE *file; - char *prefix; + const char *prefix; tree node; int indent; { @@ -404,6 +404,8 @@ print_node (file, prefix, node, indent) fprintf (file, " built-in code %d", DECL_FUNCTION_CODE (node)); if (TREE_CODE (node) == FIELD_DECL) print_node (file, "bitpos", DECL_FIELD_BITPOS (node), indent + 4); + if (DECL_POINTER_ALIAS_SET_KNOWN_P (node)) + fprintf (file, " alias set %d", DECL_POINTER_ALIAS_SET (node)); print_node_brief (file, "context", DECL_CONTEXT (node), indent + 4); print_node_brief (file, "machine_attributes", DECL_MACHINE_ATTRIBUTES (node), indent + 4); print_node_brief (file, "abstract_origin", @@ -532,7 +534,7 @@ print_node (file, prefix, node, indent) print_node (file, "chain", BLOCK_CHAIN (node), indent + 4); print_node (file, "abstract_origin", BLOCK_ABSTRACT_ORIGIN (node), indent + 4); - return; + break; case 'e': case '<': @@ -545,7 +547,7 @@ print_node (file, prefix, node, indent) print_node (file, "vars", TREE_OPERAND (node, 0), indent + 4); print_node (file, "body", TREE_OPERAND (node, 1), indent + 4); print_node (file, "block", TREE_OPERAND (node, 2), indent + 4); - return; + break; } len = tree_code_length[(int) TREE_CODE (node)]; |