Commit 1eb6762b by Jeffrey A Law Committed by Jeff Law

* jump.c (duplicate_loop_exit_test): Fix thinko.

From-SVN: r21032
parent 6fcd7598
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 <joel@OARcorp.com>
Ralf Corsepius <corsepiu@faw.uni-ulm.de>
......
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment