e_sqrt.S 336 B

1234567891011121314151617181920
  1. /*
  2. * Written by:
  3. * J.T. Conklin ([email protected])
  4. * Public domain.
  5. */
  6. #include <i387/bsd_asm.h>
  7. //__FBSDID("$FreeBSD: src/lib/msun/i387/e_sqrt.S,v 1.10 2011/01/07 16:13:12 kib Exp $")
  8. ENTRY(sqrt)
  9. fldl 4(%esp)
  10. fsqrt
  11. ret
  12. END(sqrt)
  13. /* Enable stack protection */
  14. #if defined(__ELF__)
  15. .section .note.GNU-stack,"",%progbits
  16. #endif