Commit c346547a by Torbjorn Granlund

(parallel inc/dec and branch-if-zero/nonzero): Use `+' in constraint.

From-SVN: r13124
parent 4ff1de03
...@@ -5739,7 +5739,7 @@ ...@@ -5739,7 +5739,7 @@
(define_insn "" (define_insn ""
[(set (pc) [(set (pc)
(if_then_else (ne (match_operand:SI 0 "general_operand" "g") (if_then_else (ne (match_operand:SI 0 "general_operand" "+g")
(const_int 0)) (const_int 0))
(label_ref (match_operand 1 "" "")) (label_ref (match_operand 1 "" ""))
(pc))) (pc)))
...@@ -5756,7 +5756,7 @@ ...@@ -5756,7 +5756,7 @@
(define_insn "" (define_insn ""
[(set (pc) [(set (pc)
(if_then_else (eq (match_operand:SI 0 "general_operand" "g") (if_then_else (eq (match_operand:SI 0 "general_operand" "+g")
(const_int 0)) (const_int 0))
(label_ref (match_operand 1 "" "")) (label_ref (match_operand 1 "" ""))
(pc))) (pc)))
...@@ -5773,7 +5773,7 @@ ...@@ -5773,7 +5773,7 @@
(define_insn "" (define_insn ""
[(set (pc) [(set (pc)
(if_then_else (ne (match_operand:SI 0 "general_operand" "g") (if_then_else (ne (match_operand:SI 0 "general_operand" "+g")
(const_int 1)) (const_int 1))
(label_ref (match_operand 1 "" "")) (label_ref (match_operand 1 "" ""))
(pc))) (pc)))
...@@ -5790,7 +5790,7 @@ ...@@ -5790,7 +5790,7 @@
(define_insn "" (define_insn ""
[(set (pc) [(set (pc)
(if_then_else (eq (match_operand:SI 0 "general_operand" "g") (if_then_else (eq (match_operand:SI 0 "general_operand" "+g")
(const_int 1)) (const_int 1))
(label_ref (match_operand 1 "" "")) (label_ref (match_operand 1 "" ""))
(pc))) (pc)))
...@@ -5807,7 +5807,7 @@ ...@@ -5807,7 +5807,7 @@
(define_insn "" (define_insn ""
[(set (pc) [(set (pc)
(if_then_else (ne (match_operand:SI 0 "general_operand" "g") (if_then_else (ne (match_operand:SI 0 "general_operand" "+g")
(const_int -1)) (const_int -1))
(label_ref (match_operand 1 "" "")) (label_ref (match_operand 1 "" ""))
(pc))) (pc)))
...@@ -5824,7 +5824,7 @@ ...@@ -5824,7 +5824,7 @@
(define_insn "" (define_insn ""
[(set (pc) [(set (pc)
(if_then_else (eq (match_operand:SI 0 "general_operand" "g") (if_then_else (eq (match_operand:SI 0 "general_operand" "+g")
(const_int -1)) (const_int -1))
(label_ref (match_operand 1 "" "")) (label_ref (match_operand 1 "" ""))
(pc))) (pc)))
......
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