diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-17 16:37:07 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-17 16:37:07 +0000 |
commit | 9742b4a1477dd7ce3da5169aa404d52922f93e2f (patch) | |
tree | c5e214518a3d4cc5f9e7d0ab4113b820716872a6 /gcc/cgraph.h | |
parent | 30f589a58a21df8cf6b717a9f9e9f6f6f993b42b (diff) | |
download | gcc-9742b4a1477dd7ce3da5169aa404d52922f93e2f.tar.gz |
* cgraph.c (cgraph_clone_node): Do not handle vtable_method
* cgraph.h (struct cgraph_local_info): Drop vtable_method.
* cgraphunit.c (cgraph_copy_node_for_versioning): Drop vtable_method.
* lto-cgraph.c (lto_output_node, input_overwrite_node): Drop vtable method.
* gimple-fold.c (can_refer_decl_in_current_unit_p): Mention PR20991 in
gimple-fold.c
* varasm.c (mark_decl_referenced): Drop vtable_method handling code.
* cp/class.c (cp_fold_obj_type_ref): Drop vtable_method.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172613 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 199349b3991..69fd19adf4a 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -95,10 +95,6 @@ struct GTY(()) cgraph_local_info { /* True when the function has been originally extern inline, but it is redefined now. */ unsigned redefined_extern_inline : 1; - - /* True if the function is going to be emitted in some other translation - unit, referenced from vtable. */ - unsigned vtable_method : 1; }; /* Information about the function that needs to be computed globally |