diff options
author | Doug Evans <dje@gnu.org> | 1993-09-24 19:38:51 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1993-09-24 19:38:51 +0000 |
commit | 804f56d8d906cf1a24c49b19c33d45aa2bf6f082 (patch) | |
tree | aa3ef7a11845fc37beb12e7cfa83e879bc6bb361 | |
parent | 8bc169f258f7643be223c5c94ce89680809a4a76 (diff) | |
download | gcc-804f56d8d906cf1a24c49b19c33d45aa2bf6f082.zip gcc-804f56d8d906cf1a24c49b19c33d45aa2bf6f082.tar.gz gcc-804f56d8d906cf1a24c49b19c33d45aa2bf6f082.tar.bz2 |
dbxout.c: (dbxout_symbol): FRAME_POINTER_REGNUM has been eliminated by now...
* dbxout.c: (dbxout_symbol): FRAME_POINTER_REGNUM has been eliminated
by now, use HARD_FRAME_POINTER_REGNUM.
From-SVN: r5452
-rw-r--r-- | gcc/dbxout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 8b53958..29dda05 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -1787,7 +1787,7 @@ dbxout_symbol_location (decl, type, suffix, home) else if (GET_CODE (home) == MEM && (GET_CODE (XEXP (home, 0)) == MEM || (GET_CODE (XEXP (home, 0)) == REG - && REGNO (XEXP (home, 0)) != FRAME_POINTER_REGNUM))) + && REGNO (XEXP (home, 0)) != HARD_FRAME_POINTER_REGNUM))) /* If the value is indirect by memory or by a register that isn't the frame pointer then it means the object is variable-sized and address through |