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/lto-cgraph.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/lto-cgraph.c')
-rw-r--r-- | gcc/lto-cgraph.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/lto-cgraph.c b/gcc/lto-cgraph.c index c8b0797f3a7..f560357b508 100644 --- a/gcc/lto-cgraph.c +++ b/gcc/lto-cgraph.c @@ -502,7 +502,6 @@ lto_output_node (struct lto_simple_output_block *ob, struct cgraph_node *node, bp_pack_value (&bp, node->lowered, 1); bp_pack_value (&bp, in_other_partition, 1); bp_pack_value (&bp, node->alias, 1); - bp_pack_value (&bp, node->finalized_by_frontend, 1); bp_pack_value (&bp, node->frequency, 2); bp_pack_value (&bp, node->only_called_at_startup, 1); bp_pack_value (&bp, node->only_called_at_exit, 1); @@ -948,7 +947,6 @@ input_overwrite_node (struct lto_file_decl_data *file_data, TREE_STATIC (node->decl) = 0; } node->alias = bp_unpack_value (bp, 1); - node->finalized_by_frontend = bp_unpack_value (bp, 1); node->frequency = (enum node_frequency)bp_unpack_value (bp, 2); node->only_called_at_startup = bp_unpack_value (bp, 1); node->only_called_at_exit = bp_unpack_value (bp, 1); |