mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-15 09:30:06 +00:00
16 lines
271 B
ArmAsm
16 lines
271 B
ArmAsm
|
/*
|
||
|
* Written by J.T. Conklin <jtc@netbsd.org>.
|
||
|
* Public domain.
|
||
|
*/
|
||
|
|
||
|
#include <machine/asm.h>
|
||
|
|
||
|
RCSID("$NetBSD: s_significand.S,v 1.4 1995/05/09 00:21:47 jtc Exp $")
|
||
|
|
||
|
ENTRY(__significand)
|
||
|
fldl 4(%esp)
|
||
|
fxtract
|
||
|
fstpl %st(1)
|
||
|
ret
|
||
|
weak_alias (__significand, significand)
|