diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-31 22:06:21 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-31 22:06:21 +0000 |
commit | 5f96731e0228b223b6b1f18791cadc2248152158 (patch) | |
tree | 31891da267603a76ed45fcb3dde4a7856833e451 /gcc/unroll.c | |
parent | a334f1cdd41c64c1089d2b84ee02fa764bb693b4 (diff) | |
download | ppe42-gcc-5f96731e0228b223b6b1f18791cadc2248152158.tar.gz ppe42-gcc-5f96731e0228b223b6b1f18791cadc2248152158.zip |
(copy_loop_body): Fix typo in call to sets_cc0_p.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9853 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/unroll.c')
-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 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 { |