Commit 0022b96a by Richard Henderson Committed by Richard Henderson

* config/i386/i386.md: Fix missing modes on cmove splitters.

From-SVN: r92180
parent 92f51df7
2004-12-15 Richard Henderson <rth@redhat.com>
* config/i386/i386.md: Fix missing modes on cmove splitters.
2004-12-15 Jan Beulich <jbeulich@novell.com>
* mklibgcc.in (libgcc2_c_dep): Add dependency on libgcc2.h.
......
......@@ -18225,7 +18225,7 @@
;; or op2, op0 - get the nonzero one into the result.
(define_split
[(set (match_operand:SF 0 "register_operand" "")
(if_then_else (match_operator:SF 1 "sse_comparison_operator"
(if_then_else:SF (match_operator:SF 1 "sse_comparison_operator"
[(match_operand:SF 4 "register_operand" "")
(match_operand:SF 5 "nonimmediate_operand" "")])
(match_operand:SF 2 "register_operand" "")
......@@ -18263,7 +18263,7 @@
(define_split
[(set (match_operand:DF 0 "register_operand" "")
(if_then_else (match_operator:DF 1 "sse_comparison_operator"
(if_then_else:DF (match_operator:DF 1 "sse_comparison_operator"
[(match_operand:DF 4 "register_operand" "")
(match_operand:DF 5 "nonimmediate_operand" "")])
(match_operand:DF 2 "register_operand" "")
......@@ -18393,7 +18393,7 @@
(define_split
[(set (match_operand:SF 0 "register_operand" "")
(if_then_else (match_operator 1 "comparison_operator"
(if_then_else:SF (match_operator 1 "comparison_operator"
[(match_operand:SF 4 "nonimmediate_operand" "")
(match_operand:SF 5 "nonimmediate_operand" "")])
(match_operand:SF 2 "nonmemory_operand" "")
......@@ -18431,7 +18431,7 @@
(define_split
[(set (match_operand:DF 0 "register_operand" "")
(if_then_else (match_operator 1 "comparison_operator"
(if_then_else:DF (match_operator 1 "comparison_operator"
[(match_operand:DF 4 "nonimmediate_operand" "")
(match_operand:DF 5 "nonimmediate_operand" "")])
(match_operand:DF 2 "nonmemory_operand" "")
......
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