varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of TRANSLATION_UNIT_DECL...
authorMark Mitchell <mark@codesourcery.com>
Fri, 11 Jul 2003 21:20:18 +0000 (21:20 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Fri, 11 Jul 2003 21:20:18 +0000 (21:20 +0000)
* varasm.c (make_decl_rtl): Treat decls with a DECL_CONTEXT of
TRANSLATION_UNIT_DECL as top_level.

From-SVN: r69244

gcc/ChangeLog
gcc/varasm.c

index 2c60ad5..4ee46e9 100644 (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,
index aa1c355..6b02b34 100644 (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;