cgrpah.h (struct cgraph_node): Remove finalized_by_frontend.
authorJan Hubicka <jh@suse.cz>
Sun, 17 Apr 2011 17:00:48 +0000 (19:00 +0200)
committerJan Hubicka <hubicka@gcc.gnu.org>
Sun, 17 Apr 2011 17:00:48 +0000 (17:00 +0000)
* 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

gcc/ChangeLog
gcc/cgraph.h
gcc/cgraphunit.c
gcc/lto-cgraph.c

index f8287a825c3048e8b20838272444cc5216bd720c..b6d583bc195907e1db2b5d8149dcd3ac5ed516e4 100644 (file)
@@ -1,3 +1,10 @@
+2011-04-17  Jan Hubicka  <jh@suse.cz>
+
+       * 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.
+
 2011-04-17  Jan Hubicka  <jh@suse.cz>
 
        * cgraph.c (cgraph_clone_node): Do not handle vtable_method
index 69fd19adf4adb9561b28cf1150368f52d5ed3326..e3a3b58d4ffd257bf4b6042aed9cda9c429bca7e 100644 (file)
@@ -239,8 +239,6 @@ struct GTY((chain_next ("%h.next"), chain_prev ("%h.previous"))) cgraph_node {
   unsigned process : 1;
   /* Set for aliases once they got through assemble_alias.  */
   unsigned alias : 1;
-  /* Set for nodes that was constructed and finalized by frontend.  */
-  unsigned finalized_by_frontend : 1;
   /* Set for alias and thunk nodes, same_body points to the node they are alias
      of and they are linked through the next/previous pointers.  */
   unsigned same_body_alias : 1;
index adfb0d27aad697a33727fa363e8940f89e809659..3dbfc2bbf1535d40ee3747e51b7c68bb8e3ad0c6 100644 (file)
@@ -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);
index c8b0797f3a7fa2d0263eaf748c501f16854c3376..f560357b508d5a05e0327485fc767337c77e6bf6 100644 (file)
@@ -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);