From 804f56d8d906cf1a24c49b19c33d45aa2bf6f082 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 24 Sep 1993 19:38:51 +0000 Subject: [PATCH] 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 --- gcc/dbxout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 8b53958cc83..29dda05009d 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 -- 2.30.2