From e048778fca6e205cf73e02a3a4d2d8df0f54a614 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sun, 20 Mar 1994 06:38:17 -0500 Subject: [PATCH] (mark_used_regs_combine): Correct typo. From-SVN: r6831 --- gcc/combine.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/combine.c b/gcc/combine.c index 5c209ae8732..e64add4b43e 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -10015,10 +10015,10 @@ mark_used_regs_combine (x) the address. */ register rtx testreg = SET_DEST (x); - while (GET_CODE (x) == SUBREG - || GET_CODE (x) == ZERO_EXTRACT - || GET_CODE (x) == SIGN_EXTRACT - || GET_CODE (x) == STRICT_LOW_PART) + while (GET_CODE (testreg) == SUBREG + || GET_CODE (testreg) == ZERO_EXTRACT + || GET_CODE (testreg) == SIGN_EXTRACT + || GET_CODE (testreg) == STRICT_LOW_PART) testreg = XEXP (testreg, 0); if (GET_CODE (testreg) == MEM) -- 2.30.2