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/cgraph.h | |
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/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 69fd19a..e3a3b58 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -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; |