aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop-doloop.c
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2010-02-19 12:47:18 +0000
committerJakub Jelinek <jakub@redhat.com>2010-02-19 12:47:18 +0000
commitde2edcf6408a1c0d22a7a3cdacf5e5165132ba8f (patch)
treeebd1d507361a10ee171d0870153967f25ddf0fe9 /gcc/loop-doloop.c
parentd9187ec782c73e3526be543a7729c2e818492da0 (diff)
PR middle-end/42233
* loop-doloop.c (add_test): Adjust do_compare_rtx_and_jump caller. git-svn-id: https://gcc.gnu.org/svn/gcc/trunk@156893 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/loop-doloop.c')
-rw-r--r--gcc/loop-doloop.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/loop-doloop.c b/gcc/loop-doloop.c
index 0fa0fe21e51..d1bd2855915 100644
--- a/gcc/loop-doloop.c
+++ b/gcc/loop-doloop.c
@@ -1,6 +1,6 @@
/* Perform doloop optimizations
- Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation,
- Inc.
+ Copyright (C) 2004, 2005, 2006, 2007, 2008, 2010
+ Free Software Foundation, Inc.
Based on code by Michael P. Hayes (m.hayes@elec.canterbury.ac.nz)
This file is part of GCC.
@@ -291,7 +291,8 @@ add_test (rtx cond, edge *e, basic_block dest)
op0 = force_operand (op0, NULL_RTX);
op1 = force_operand (op1, NULL_RTX);
label = block_label (dest);
- do_compare_rtx_and_jump (op0, op1, code, 0, mode, NULL_RTX, NULL_RTX, label);
+ do_compare_rtx_and_jump (op0, op1, code, 0, mode, NULL_RTX,
+ NULL_RTX, label, -1);
jump = get_last_insn ();
if (!jump || !JUMP_P (jump))