From 69deb6e055c718a94929ffd3012b149c461bb9a0 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 18 Nov 2001 19:08:43 +0000 Subject: [PATCH] * sdbout.c (sdbout_symbol): Avoid warning due to &DECL_RTL. From-SVN: r47148 --- gcc/ChangeLog | 4 ++++ gcc/sdbout.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd33c36d6ad..5ef917e3493 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Sun Nov 18 14:13:52 2001 Richard Kenner + + * sdbout.c (sdbout_symbol): Avoid warning due to &DECL_RTL. + 2001-11-18 Joseph S. Myers * c-decl.c (c_decode_option): Give deprecation warning for diff --git a/gcc/sdbout.c b/gcc/sdbout.c index ab0a0d89849..f8bd7447036 100644 --- a/gcc/sdbout.c +++ b/gcc/sdbout.c @@ -796,7 +796,7 @@ sdbout_symbol (decl, local) particular compilation. */ if (GET_CODE (value) == REG) { - regno = REGNO (DECL_RTL (decl)); + regno = REGNO (value); if (regno >= FIRST_PSEUDO_REGISTER) return; } @@ -809,8 +809,8 @@ sdbout_symbol (decl, local) if (REGNO (value) >= FIRST_PSEUDO_REGISTER) return; } - regno = REGNO (alter_subreg (&DECL_RTL (decl))); - value = DECL_RTL (decl); + regno = REGNO (alter_subreg (&value)); + SET_DECL_RTL (decl, value); } /* Don't output anything if an auto variable gets RTL that is static. -- 2.30.2