mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-03-08 21:47:44 +08:00
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:
parent
358b8f0114
commit
a44cea75a7
@ -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,
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user