blob: 1483a0dec2bb324f3baa0bbd4c1d52ee2150fc28 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* 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
fincstp
ret
PSEUDO_END (__significandl)
weak_alias (__significandl, significandl)
|