From 97db846f9ccc1b5c1d2c72869937173bb7c25871 Mon Sep 17 00:00:00 2001 From: hubicka Date: Thu, 13 May 2010 17:47:48 +0000 Subject: [PATCH] * varpool.c (decide_is_variable_needed): Drop code checking TREE_SYMBOL_REFERENCED. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@159371 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 5 +++++ gcc/varpool.c | 7 ------- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9a77193f6be..007ce28595a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,10 @@ 2010-05-13 Jan Hubicka + * varpool.c (decide_is_variable_needed): Drop code checking + TREE_SYMBOL_REFERENCED. + +2010-05-13 Jan Hubicka + * final.c (output_addr_const): Do not call mark_decl_referenced. * cgraphunit.c (process_function_and_variable_attributes): Use mark_needed_node dirrectly. diff --git a/gcc/varpool.c b/gcc/varpool.c index 39a6565842a..f6e144950f4 100644 --- a/gcc/varpool.c +++ b/gcc/varpool.c @@ -321,13 +321,6 @@ decide_is_variable_needed (struct varpool_node *node, tree decl) || node->force_output) return true; - /* ??? If the assembler name is set by hand, it is possible to assemble - the name later after finalizing the function and the fact is noticed - in assemble_name then. This is arguably a bug. */ - if (DECL_ASSEMBLER_NAME_SET_P (decl) - && TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl))) - return true; - /* Externally visible variables must be output. The exception is COMDAT variables that must be output only when they are needed. */ if (TREE_PUBLIC (decl) -- 2.11.0