]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - lib/msun/i387/s_significandf.S
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / lib / msun / i387 / s_significandf.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: s_significandf.S,v 1.3 1995/05/09 00:24:07 jtc Exp $") */
10
11 ENTRY(significandf)
12         flds    4(%esp)
13         fxtract
14         fstp    %st(1)
15         ret
16 END(significandf)
17
18         .section .note.GNU-stack,"",%progbits