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.h | |
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.h')
-rw-r--r-- | gcc/cgraph.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index d2d310a..0e01a65 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -178,8 +178,8 @@ struct cgraph_node GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) /* Set once the function has been instantiated and its callee lists created. */ unsigned analyzed : 1; - /* Set when function is scheduled to be assembled. */ - unsigned output : 1; + /* Set when function is scheduled to be processed by local passes. */ + unsigned process : 1; /* Set for aliases once they got through assemble_alias. */ unsigned alias : 1; |