0dc9e0996a
As the current libc includes a libm implementation, with the new libc this is needed. Unneeded (for the moment) archs have been removed.
17 lines
261 B
ArmAsm
17 lines
261 B
ArmAsm
/*
|
|
* Written by J.T. Conklin <jtc@NetBSD.org>.
|
|
* Public domain.
|
|
*/
|
|
|
|
#include <machine/asm.h>
|
|
|
|
RCSID("$NetBSD: e_sqrtf.S,v 1.4 2003/07/26 19:25:00 salo Exp $")
|
|
|
|
ENTRY(__ieee754_sqrtf)
|
|
#ifdef __i386__
|
|
flds 4(%esp)
|
|
fsqrt
|
|
#else
|
|
sqrtss %xmm0,%xmm0
|
|
#endif
|
|
ret
|