Commit a81bd72f by Michael Meissner

Fix typo in smin/smax of floating point.

From-SVN: r8853
parent 59cf4421
......@@ -2769,7 +2769,7 @@
"TARGET_PPC_GFXOPT"
[(set (match_dup 3)
(minus:SF (match_dup 1) (match_dup 2)))
(set (match_operand:SF 0 "gpc_reg_operand" "")
(set (match_dup 0)
(if_then_else:SF (ge (match_dup 3)
(const_int 0))
(match_dup 1)
......@@ -2797,7 +2797,7 @@
"TARGET_PPC_GFXOPT"
[(set (match_dup 3)
(minus:SF (match_dup 2) (match_dup 1)))
(set (match_operand:SF 0 "gpc_reg_operand" "")
(set (match_dup 0)
(if_then_else:SF (ge (match_dup 3)
(const_int 0))
(match_dup 1)
......@@ -2936,7 +2936,7 @@
"TARGET_PPC_GFXOPT"
[(set (match_dup 3)
(minus:DF (match_dup 1) (match_dup 2)))
(set (match_operand:DF 0 "gpc_reg_operand" "")
(set (match_dup 0)
(if_then_else:DF (ge (match_dup 3)
(const_int 0))
(match_dup 1)
......@@ -2964,7 +2964,7 @@
"TARGET_PPC_GFXOPT"
[(set (match_dup 3)
(minus:DF (match_dup 2) (match_dup 1)))
(set (match_operand:DF 0 "gpc_reg_operand" "")
(set (match_dup 0)
(if_then_else:DF (ge (match_dup 3)
(const_int 0))
(match_dup 1)
......
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