diff options
author | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-07 11:21:24 +0000 |
---|---|---|
committer | jason <jason@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-08-07 11:21:24 +0000 |
commit | 341ededf5f215a59eec480cb2a67c6e49d2b171a (patch) | |
tree | 58056a7499566a8690732704a8ea157d5c0c2a65 /gcc/c-semantics.c | |
parent | 90b3057739e3ecef3cfb8fe0732ada4c407f788b (diff) | |
download | gcc-341ededf5f215a59eec480cb2a67c6e49d2b171a.tar.gz |
* c-semantics.c (make_rtl_for_local_static): Use DECL_RTL_SET_P.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@44684 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/c-semantics.c')
-rw-r--r-- | gcc/c-semantics.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-semantics.c b/gcc/c-semantics.c index 8f08ff38938..2ee2647e14e 100644 --- a/gcc/c-semantics.c +++ b/gcc/c-semantics.c @@ -243,7 +243,7 @@ make_rtl_for_local_static (decl) already create RTL, which means that the modification to DECL_ASSEMBLER_NAME came only via the explicit extension. */ if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl) - && !DECL_RTL (decl)) + && !DECL_RTL_SET_P (decl)) asmspec = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)); rest_of_decl_compilation (decl, asmspec, /*top_level=*/0, /*at_end=*/0); |