OSDN Git Service

* tree.c (set_decl_assembler_name): Set DECL_ASSEMBLER_NAME for
authormmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Mar 2001 19:43:41 +0000 (19:43 +0000)
committermmitchel <mmitchel@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 20 Mar 2001 19:43:41 +0000 (19:43 +0000)
variables that are TREE_PUBLIC, even if not TREE_STATIC.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40667 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/tree.c

index b448359..78ef900 100644 (file)
@@ -1,3 +1,8 @@
+2001-03-20  Mark Mitchell  <mark@codesourcery.com>
+
+       * tree.c (set_decl_assembler_name): Set DECL_ASSEMBLER_NAME for
+       variables that are TREE_PUBLIC, even if not TREE_STATIC.
+
 2001-03-20  DJ Delorie  <dj@redhat.com>
 
        * Makefile.in (install-libgcc): Pass complete list of variables.
index 573d7a2..d05f3ca 100644 (file)
@@ -204,7 +204,9 @@ set_decl_assembler_name (decl)
      DECL_ASSEMBLER_NAME.  */
   if (TREE_CODE (decl) == FUNCTION_DECL
       || (TREE_CODE (decl) == VAR_DECL 
-         && (TREE_STATIC (decl) || DECL_EXTERNAL (decl))))
+         && (TREE_STATIC (decl) 
+             || DECL_EXTERNAL (decl) 
+             || TREE_PUBLIC (decl))))
     /* By default, assume the name to use in assembly code is the
        same as that used in the source language.  (That's correct
        for C, and GCC used to set DECL_ASSEMBLER_NAME to the same