tree.c (set_decl_assembler_name): Set DECL_ASSEMBLER_NAME for variables that are TREE_PUBLIC, even if not TREE_STATIC.

* tree.c (set_decl_assembler_name): Set DECL_ASSEMBLER_NAME for
	variables that are TREE_PUBLIC, even if not TREE_STATIC.

From-SVN: r40667
This commit is contained in:
Mark Mitchell 2001-03-20 19:43:41 +00:00 committed by Mark Mitchell
parent f64805b6e9
commit 116b39e02f
2 changed files with 8 additions and 1 deletions

View 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.

View 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