* print-tree.c (print_node): Fix string for DECL_STRUCT_FUNCTION.

From-SVN: r152954
This commit is contained in:
Eric Botcazou 2009-10-17 16:03:49 +00:00 committed by Eric Botcazou
parent b7dae211cc
commit 1ee41d433d
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-10-17 Eric Botcazou <ebotcazou@adacore.com>
* print-tree.c (print_node): Fix string for DECL_STRUCT_FUNCTION.
2009-10-17 Richard Guenther <rguenther@suse.de>
* lto-streamer-in.c (lto_input_location): Try to reuse

View File

@ -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)