Commit ed9a2f57 by Torbjorn Granlund

(parallel inc and branch-if-zero/nonzero): Check for -1, not zero.

From-SVN: r13080
parent 27bae8e5
......@@ -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)
......
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