varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of TRANSLATION_UNIT_DECL as top_level.

* varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of
	TRANSLATION_UNIT_DECL as top_level.

From-SVN: r69244
This commit is contained in:
Mark Mitchell 2003-07-11 21:20:18 +00:00 committed by Mark Mitchell
parent 358b8f0114
commit a44cea75a7
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-07-11 Mark Mitchell <mark@codesourcery.com>
* varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of
TRANSLATION_UNIT_DECL as top_level.
2003-07-11 Jakub Jelinek <jakub@redhat.com>
* optabs.c (prepare_cmp_insn): Try cmpmemM first if it exists,

View File

@ -750,7 +750,9 @@ decode_reg_name (const char *asmspec)
void
make_decl_rtl (tree decl, const char *asmspec)
{
int top_level = (DECL_CONTEXT (decl) == NULL_TREE);
int top_level = (DECL_CONTEXT (decl) == NULL_TREE
|| (TREE_CODE (DECL_CONTEXT (decl))
== TRANSLATION_UNIT_DECL));
const char *name = 0;
const char *new_name = 0;
int reg_number;