12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #include <machine/asm.h>
- __FBSDID("$FreeBSD: src/lib/msun/i387/e_log10.S,v 1.10 2011/01/07 16:13:12 kib Exp $")
- ENTRY(log10)
- fldlg2
- fldl 4(%esp)
- fyl2x
- ret
- END(log10)
- .section .note.GNU-stack,"",%progbits
|