mirror of git://sourceware.org/git/glibc.git
Rewritten to C versions using inline assembly.
This commit is contained in:
parent
51e5928164
commit
51892ba623
|
|
@ -1,17 +0,0 @@
|
||||||
/*
|
|
||||||
* 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(__logbl)
|
|
||||||
fldt 4(%esp)
|
|
||||||
fxtract
|
|
||||||
fstp %st
|
|
||||||
ret
|
|
||||||
END (__logbl)
|
|
||||||
weak_alias (__logbl, logbl)
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
/*
|
|
||||||
* 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(__rintl)
|
|
||||||
fldt 4(%esp)
|
|
||||||
frndint
|
|
||||||
ret
|
|
||||||
END (__rintl)
|
|
||||||
weak_alias (__rintl, rintl)
|
|
||||||
|
|
@ -1,17 +0,0 @@
|
||||||
/*
|
|
||||||
* 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
|
|
||||||
fstp %st(0)
|
|
||||||
ret
|
|
||||||
END (__significandl)
|
|
||||||
weak_alias (__significandl, significandl)
|
|
||||||
Loading…
Reference in New Issue