diff options
author | Andrew Pinski <apinski@apple.com> | 2004-06-19 16:16:59 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-06-19 09:16:59 -0700 |
commit | f44703b57513db0c6a4ce3ca3fe0ab3ea07bd83d (patch) | |
tree | 90e9a6e0faf50bfcf775a4c2673b0812ce33699c /gcc/toplev.c | |
parent | 242229bbdc6beacddb4ed263c759d3ca52dae927 (diff) | |
download | gcc-f44703b57513db0c6a4ce3ca3fe0ab3ea07bd83d.tar.gz |
re PR c++/15721 (template instantation omits static data members)
2004-06-19 Andrew Pinski <apinski@apple.com>
PR c++/15721
* toplev.c (wrapup_global_declarations): Do not check
TREE_SYMBOL_REFERENCED of the DECL_ASSEMBLER_NAME but check
cgraph_varpool_node's needed field.
From-SVN: r83386
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 16b45d74ced..b2990bcae77 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -762,16 +762,17 @@ wrapup_global_declarations (tree *vec, int len) if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl)) { + struct cgraph_varpool_node *node; bool needed = 1; + node = cgraph_varpool_node (decl); - if (flag_unit_at_a_time - && cgraph_varpool_node (decl)->finalized) + if (flag_unit_at_a_time && node->finalized) needed = 0; else if ((flag_unit_at_a_time && !cgraph_global_info_ready) && (TREE_USED (decl) || TREE_USED (DECL_ASSEMBLER_NAME (decl)))) /* needed */; - else if (TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))) + else if (node->needed) /* needed */; else if (DECL_COMDAT (decl)) needed = 0; |