diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-31 18:06:21 -0400 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1995-05-31 18:06:21 -0400 |
commit | e65886db7dfb5cd98b806945386a2e294074e234 (patch) | |
tree | 31891da267603a76ed45fcb3dde4a7856833e451 | |
parent | 354d687fe5f701ba344c118d5a540a6d577b1a0f (diff) | |
download | gcc-e65886db7dfb5cd98b806945386a2e294074e234.zip gcc-e65886db7dfb5cd98b806945386a2e294074e234.tar.gz gcc-e65886db7dfb5cd98b806945386a2e294074e234.tar.bz2 |
(copy_loop_body): Fix typo in call to sets_cc0_p.
From-SVN: r9853
-rw-r--r-- | gcc/unroll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c index 6dd9760..7efb7f3 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 { |