]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/msun/i387/e_log10f.S
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / msun / i387 / e_log10f.S
1 /*
2  * Written by J.T. Conklin <jtc@netbsd.org>.
3  * Public domain.
4  */
5
6 #include <machine/asm.h>
7
8 __FBSDID("$FreeBSD$");
9 /* RCSID("$NetBSD: e_log10f.S,v 1.1 1996/07/03 16:50:22 jtc Exp $") */
10
11 ENTRY(log10f)
12         fldlg2
13         flds    4(%esp)
14         fyl2x
15         ret
16 END(log10f)
17
18         .section .note.GNU-stack,"",%progbits