* print-tree.c (print_node): Fix string for DECL_STRUCT_FUNCTION.
From-SVN: r152954
This commit is contained in:
parent
b7dae211cc
commit
1ee41d433d
@ -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>
|
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)
|
|||||||
&& 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)
|
||||||
|
Loading…
Reference in New Issue
Block a user