*** empty log message ***

From-SVN: r725
This commit is contained in:
Jeff Law 1992-04-11 08:34:44 -06:00
parent 188538df24
commit d790221795
1 changed files with 14 additions and 0 deletions

View File

@ -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"