acos.s 266 B

123456789101112131415161718192021222324
  1. .global acosf
  2. .type acosf,@function
  3. acosf:
  4. flds 4(%esp)
  5. jmp 1f
  6. .global acosl
  7. .type acosl,@function
  8. acosl:
  9. fldt 4(%esp)
  10. jmp 1f
  11. .global acos
  12. .type acos,@function
  13. acos:
  14. fldl 4(%esp)
  15. 1: fld %st(0)
  16. fmul %st(0)
  17. fld1
  18. fsubp %st(1)
  19. fsqrt
  20. fxch %st(1)
  21. fpatan
  22. ret