diff options
author | Jan Hubicka <jh@suse.cz> | 2011-04-17 19:00:48 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2011-04-17 17:00:48 +0000 |
commit | 10158cd3db8e8a64c39661418ec6ac1a57cdb092 (patch) | |
tree | 7a5af044cde1ffece2aea410a039ae86f842214d /gcc/cgraphunit.c | |
parent | 2e9bb6ba99ec7db9f88a44dfec42c84ec1c7ea30 (diff) | |
download | gcc-10158cd3db8e8a64c39661418ec6ac1a57cdb092.zip gcc-10158cd3db8e8a64c39661418ec6ac1a57cdb092.tar.gz gcc-10158cd3db8e8a64c39661418ec6ac1a57cdb092.tar.bz2 |
cgrpah.h (struct cgraph_node): Remove finalized_by_frontend.
* 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.
From-SVN: r172614
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 adfb0d2..3dbfc2b 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); |