diff options
author | Jakub Jelinek <jakub@redhat.com> | 2005-04-25 00:06:37 +0200 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2005-04-25 00:06:37 +0200 |
commit | 8634c649cb1ea6d85a53f1fab3bd28af869b934f (patch) | |
tree | ceb41f874d3b1e3d612a3d2785020f503973c21a /gcc/cgraph.h | |
parent | 49fc196e8edd206d1cd275cd015238e429056db7 (diff) | |
download | gcc-8634c649cb1ea6d85a53f1fab3bd28af869b934f.zip gcc-8634c649cb1ea6d85a53f1fab3bd28af869b934f.tar.gz gcc-8634c649cb1ea6d85a53f1fab3bd28af869b934f.tar.bz2 |
re PR middle-end/20991 (ICE in cgraph_mark_reachable_node)
PR middle-end/20991
* cgraph.h (cgraph_local_info): Add vtable_method field.
* varasm.c (mark_decl_referenced): If cgraph_global_info_ready
and node is vtable_method, finalized and not reachable, don't do
anything.
* class.c: Include cgraph.h.
(cp_fold_obj_type_ref): Set node->local.vtable_method.
* Make-lang.in (cgraph.o): Depend on $(CGRAPH_H).
* g++.dg/opt/pr20991.C: New test.
From-SVN: r98674
Diffstat (limited to 'gcc/cgraph.h')
-rw-r--r-- | gcc/cgraph.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/cgraph.h b/gcc/cgraph.h index 02fa662..fc0fa78 100644 --- a/gcc/cgraph.h +++ b/gcc/cgraph.h @@ -51,6 +51,10 @@ struct cgraph_local_info GTY(()) /* True if statics_read_for_function and statics_written_for_function contain valid data. */ bool for_functions_valid; + + /* True if the function is going to be emitted in some other translation + unit, referenced from vtable. */ + bool vtable_method; }; /* Information about the function that needs to be computed globally |