From d96023cfa7a2be5d15515657ade02a3afdab58f4 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 18 Sep 1993 16:52:40 -0400 Subject: [PATCH] (recog_for_combine): Fix typos in previous change. From-SVN: r5354 --- gcc/combine.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/combine.c b/gcc/combine.c index ece50204558..59d7cda450d 100644 --- a/gcc/combine.c +++ b/gcc/combine.c @@ -7878,10 +7878,10 @@ recog_for_combine (pnewpat, insn, pnotes) /* If PAT is a PARALLEL, check to see if it contains the CLOBBER we use to indicate that something didn't match. If we find such a thing, force rejection. */ - if (GET_CODE (pat) == CLOBBER) + if (GET_CODE (pat) == PARALLEL) for (i = XVECLEN (pat, 0) - 1; i >= 0; i--) - if (GET_CODE (XVECEXP (pat, i, 0)) == CLOBBER - && XEXP (XVECEXP (pat, i, 0), 0) == const0_rtx) + if (GET_CODE (XVECEXP (pat, 0, i)) == CLOBBER + && XEXP (XVECEXP (pat, 0, i), 0) == const0_rtx) return -1; /* Is the result of combination a valid instruction? */ -- 2.30.2