repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
coverity appeasement
[minix.git]
/
lib
/
libm
/
arch
/
i387
/
s_significand.S
blob
e85763a95c484d063ed86ae1787ced94911d06a7
1
/*
2
* Written by J.T. Conklin <jtc@NetBSD.org>.
3
* Public domain.
4
*/
5
6
#include <machine/asm.h>
7
8
#include "abi.h"
9
10
RCSID("$NetBSD: s_significand.S,v 1.6 2003/07/26 19:25:03 salo Exp $")
11
12
ENTRY(significand)
13
XMM_ONE_ARG_DOUBLE_PROLOGUE
14
fldl ARG_DOUBLE_ONE
15
fxtract
16
fstp %st(1)
17
XMM_DOUBLE_EPILOGUE
18
ret