From: Torbjorn Granlund Date: Thu, 31 Oct 1996 07:56:30 +0000 (+0000) Subject: (parallel inc and branch-if-zero/nonzero): Check for -1, not zero. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ed9a2f576fe11111f6b06c0fc0f2f3af1c2a265f;p=gcc.git (parallel inc and branch-if-zero/nonzero): Check for -1, not zero. From-SVN: r13080 --- diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index c4041b4c9e7..33c307040cd 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -5762,7 +5762,7 @@ (define_insn "" [(set (pc) (if_then_else (ne (match_operand:SI 0 "general_operand" "g") - (const_int 0)) + (const_int -1)) (label_ref (match_operand 1 "" "")) (pc))) (set (match_dup 0) @@ -5779,7 +5779,7 @@ (define_insn "" [(set (pc) (if_then_else (eq (match_operand:SI 0 "general_operand" "g") - (const_int 0)) + (const_int -1)) (label_ref (match_operand 1 "" "")) (pc))) (set (match_dup 0)