diff options
author | Jan Hubicka <jh@suse.cz> | 2009-03-28 13:04:38 +0100 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2009-03-28 12:04:38 +0000 |
commit | 257eb6e3ef00aa111907c4b9411aaa81cdc80396 (patch) | |
tree | 69b155323bbc7a05d3f5fd2ca7a7962ead5a3ce3 /gcc/cgraph.c | |
parent | b7551676632af6f5641aaeb500acc566c4e20922 (diff) | |
download | gcc-257eb6e3ef00aa111907c4b9411aaa81cdc80396.zip gcc-257eb6e3ef00aa111907c4b9411aaa81cdc80396.tar.gz gcc-257eb6e3ef00aa111907c4b9411aaa81cdc80396.tar.bz2 |
cgraph.c (dump_cgraph_node): Add replace output flag by process.
* cgraph.c (dump_cgraph_node): Add replace output flag by process.
* cgraph.h (cgraph_node): Likewise.
* cgraphunit.c (cgraph_process_new_functions): Set process flag.
(cgraph_reset_node): Use process flag.
(cgraph_mark_functions_to_output): Likewise.
(cgraph_expand_function): Likewise.
(cgraph_expand_all_functions): Likewise.
(cgraph_output_in_order): Likewise.
* dwarf2out.c (reference_to_unused): Likewise.
* passes.c do_per_function_toporder): Likewise.
From-SVN: r145178
Diffstat (limited to 'gcc/cgraph.c')
-rw-r--r-- | gcc/cgraph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cgraph.c b/gcc/cgraph.c index d17d6a9..8eb0381 100644 --- a/gcc/cgraph.c +++ b/gcc/cgraph.c @@ -1168,8 +1168,8 @@ dump_cgraph_node (FILE *f, struct cgraph_node *node) fprintf (f, " reachable"); if (gimple_has_body_p (node->decl)) fprintf (f, " body"); - if (node->output) - fprintf (f, " output"); + if (node->process) + fprintf (f, " process"); if (node->local.local) fprintf (f, " local"); if (node->local.externally_visible) |