Commit 1ee41d43 by Eric Botcazou Committed by Eric Botcazou

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

From-SVN: r152954
parent b7dae211
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> 2009-10-17 Richard Guenther <rguenther@suse.de>
* lto-streamer-in.c (lto_input_location): Try to reuse * lto-streamer-in.c (lto_input_location): Try to reuse
...@@ -541,7 +541,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent) ...@@ -541,7 +541,7 @@ print_node (FILE *file, const char *prefix, tree node, int indent)
&& DECL_STRUCT_FUNCTION (node) != 0) && DECL_STRUCT_FUNCTION (node) != 0)
{ {
indent_to (file, indent + 4); 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) if ((code == VAR_DECL || code == PARM_DECL)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment