From: Jeffrey A Law Date: Thu, 9 Jul 1998 09:40:18 +0000 (+0000) Subject: * jump.c (duplicate_loop_exit_test): Fix thinko. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1eb6762bcca0bc9c3035f788a435e014fb2757d3;p=gcc.git * jump.c (duplicate_loop_exit_test): Fix thinko. From-SVN: r21032 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dff9842aa8f..e93fe29294a 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Thu Jul 9 10:38:14 1998 Jeffrey A Law (law@cygnus.com) + + * jump.c (duplicate_loop_exit_test): Fix thinko. + Thu Jul 9 01:30:37 1998 Joel Sherrill Ralf Corsepius diff --git a/gcc/jump.c b/gcc/jump.c index 4bc925ddbd4..c582d97526a 100644 --- a/gcc/jump.c +++ b/gcc/jump.c @@ -2428,7 +2428,7 @@ duplicate_loop_exit_test (loop_start) if (++num_insns > 20 || find_reg_note (insn, REG_RETVAL, NULL_RTX) || find_reg_note (insn, REG_LIBCALL, NULL_RTX) - || asm_noperands (PATTERN (insn))) + || asm_noperands (PATTERN (insn)) > 0) return 0; break; default: