mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 07:40:05 +00:00
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
Block a user