diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-17 17:00:48 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-17 17:00:48 +0000 |
commit | 629c326dc9f013c2f8ddc3065b293b3e2f5edaf7 (patch) | |
tree | 7a5af044cde1ffece2aea410a039ae86f842214d /gcc/cgraphunit.c | |
parent | 9742b4a1477dd7ce3da5169aa404d52922f93e2f (diff) | |
download | gcc-629c326dc9f013c2f8ddc3065b293b3e2f5edaf7.tar.gz |
* cgrpah.h (struct cgraph_node): Remove finalized_by_frontend.
* cgrpahunit.c (cgraph_finalize_function): Do not set finalized_by_frontend.
* lto-cgraph.c (lto_output_node, input_overwrite_node): Do not stream
finalized_by_frontend.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172614 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraphunit.c')
-rw-r--r-- | gcc/cgraphunit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/cgraphunit.c b/gcc/cgraphunit.c index adfb0d27aad..3dbfc2bbf15 100644 --- a/gcc/cgraphunit.c +++ b/gcc/cgraphunit.c @@ -352,7 +352,6 @@ cgraph_finalize_function (tree decl, bool nested) notice_global_symbol (decl); node->local.finalized = true; node->lowered = DECL_STRUCT_FUNCTION (decl)->cfg != NULL; - node->finalized_by_frontend = true; if (cgraph_decide_is_function_needed (node, decl)) cgraph_mark_needed_node (node); |