Commit d7902217 by Jeff Law

*** empty log message ***

From-SVN: r725
parent 188538df
......@@ -3138,6 +3138,20 @@
return \"f%&neg%.d %f1,%0\";
}")
;; Sqrt instruction for the 68881
(define_insn "sqrtdf2"
[(set (match_operand:DF 0 "general_operand" "=f")
(sqrt:DF (match_operand:DF 1 "general_operand" "fm")))]
"TARGET_68881"
"*
{
if (FP_REG_P (operands[1]))
return \"fsqrt%.x %1,%0\";
else
return \"fsqrt%.d %1,%0\";
}")
;; Absolute value instructions
(define_expand "abssf2"
......
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