]> gcc.gnu.org Git - gcc.git/commitdiff
(copy_loop_body): Fix typo in call to sets_cc0_p.
authorRichard Kenner <kenner@gcc.gnu.org>
Wed, 31 May 1995 22:06:21 +0000 (18:06 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Wed, 31 May 1995 22:06:21 +0000 (18:06 -0400)
From-SVN: r9853

gcc/unroll.c

index 6dd9760fa26d58270509186e64d1172ec142eefc..7efb7f3b57536d16a44787c3bdea1f764ef3ecc4 100644 (file)
@@ -1751,7 +1751,7 @@ copy_loop_body (copy_start, copy_end, map, exit_label, last_iteration,
 
             If the previous insn set CC0, substitute constants on it as
             well.  */
-         if (sets_cc0_p (copy) != 0)
+         if (sets_cc0_p (PATTERN (copy)) != 0)
            cc0_insn = copy;
          else
            {
This page took 0.066478 seconds and 5 git commands to generate.