Rewritten to C versions using inline assembly.

This commit is contained in:
Andreas Jaeger 2001-09-18 14:18:20 +00:00
parent 51e5928164
commit 51892ba623
3 changed files with 0 additions and 50 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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)