From e65886db7dfb5cd98b806945386a2e294074e234 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Wed, 31 May 1995 18:06:21 -0400 Subject: [PATCH] (copy_loop_body): Fix typo in call to sets_cc0_p. From-SVN: r9853 --- gcc/unroll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/unroll.c b/gcc/unroll.c index 6dd9760fa26..7efb7f3b575 100644 --- a/gcc/unroll.c +++ b/gcc/unroll.c @@ -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 { -- 2.30.2