e_log10.S 347 B

123456789101112131415161718192021
  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_log10.S,v 1.10 2011/01/07 16:13:12 kib Exp $")
  8. ENTRY(log10)
  9. fldlg2
  10. fldl 4(%esp)
  11. fyl2x
  12. ret
  13. END(log10)
  14. /* Enable stack protection */
  15. #if defined(__ELF__)
  16. .section .note.GNU-stack,"",%progbits
  17. #endif