blob: e512f54fb29310ddd565152cbcbe18086e32b1c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Written by J.T. Conklin <jtc@netbsd.org>.
* Changes for long double by Ulrich Drepper <drepper@cygnus.com>
* Public domain.
*/
#include <machine/asm.h>
RCSID("$NetBSD: $")
ENTRY(__significandl)
fldt 4(%esp)
fxtract
fstpt %st(1)
ret
weak_alias (__significandl, significandl)
|