summaryrefslogtreecommitdiff
path: root/gcc/print-tree.c
diff options
context:
space:
mode:
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2009-10-17 16:03:49 +0000
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>2009-10-17 16:03:49 +0000
commitbf09aad8e359090cb53e4557cd09c5d914527588 (patch)
tree66846bd0155e4ec1a4b1e93fd590fd3477a780db /gcc/print-tree.c
parentcb0ae7a99a3c13d0e276afeecbf6a6315594ca5f (diff)
downloadgcc-bf09aad8e359090cb53e4557cd09c5d914527588.tar.gz
* print-tree.c (print_node): Fix string for DECL_STRUCT_FUNCTION.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@152954 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/print-tree.c')
-rw-r--r--gcc/print-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/print-tree.c b/gcc/print-tree.c
index f4b74d95ffc..ded9ea84308 100644
--- a/gcc/print-tree.c
+++ b/gcc/print-tree.c
@@ -541,7 +541,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
&& DECL_STRUCT_FUNCTION (node) != 0)
{
indent_to (file, indent + 4);
- dump_addr (file, "saved-insns ", DECL_STRUCT_FUNCTION (node));
+ dump_addr (file, "struct-function ", DECL_STRUCT_FUNCTION (node));
}
if ((code == VAR_DECL || code == PARM_DECL)