------- Comment #10 from howarth at nitro dot med dot uc dot edu  2010-05-15 
18:48 -------
Suppressed as by reverting r159371 with...

diff -uNr gcc-4.6-20100514/gcc/varpool.c gcc-4.6-20100514.hubicka/gcc/varpool.c
--- gcc-4.6-20100514/gcc/varpool.c      2010-05-14 19:37:24.000000000 -0400
+++ gcc-4.6-20100514.hubicka/gcc/varpool.c      2010-05-14 19:45:35.000000000
-0400
@@ -321,6 +321,13 @@
       || 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 (TARGET_MACHO && 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)

to reintroduce this for darwin only.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44146

Reply via email to