]> gcc.gnu.org Git - gcc.git/commitdiff
* jump.c (duplicate_loop_exit_test): Fix thinko.
authorJeffrey A Law <law@cygnus.com>
Thu, 9 Jul 1998 09:40:18 +0000 (09:40 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 9 Jul 1998 09:40:18 +0000 (03:40 -0600)
From-SVN: r21032

gcc/ChangeLog
gcc/jump.c

index dff9842aa8f5b9395e998cf1da51cd057f5e5e67..e93fe29294a4e74e9828b03989c963317c691d86 100644 (file)
@@ -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  <joel@OARcorp.com>
                          Ralf Corsepius <corsepiu@faw.uni-ulm.de>
 
index 4bc925ddbd4e6dcdb8ea814fb95f108f71cb8205..c582d97526a022e69ea51b69de59aac190fa6424 100644 (file)
@@ -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:
This page took 0.078782 seconds and 5 git commands to generate.