diff options
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r-- | gcc/print-tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c index 2965d6e..df566fb 100644 --- a/gcc/print-tree.c +++ b/gcc/print-tree.c @@ -440,11 +440,11 @@ print_node (FILE *file, const char *prefix, tree node, int indent) } } else if (TREE_CODE (node) == FUNCTION_DECL - && DECL_SAVED_INSNS (node) != 0) + && DECL_STRUCT_FUNCTION (node) != 0) { indent_to (file, indent + 4); fprintf (file, "saved-insns " HOST_PTR_PRINTF, - (void *) DECL_SAVED_INSNS (node)); + (void *) DECL_STRUCT_FUNCTION (node)); } /* Print the decl chain only if decl is at second level. */ |