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
/
e_sqrtf.S
blob
f9163bab5479a7da7e00743eb4df98c5ea6a0938
1
/*
2
* Written by J.T. Conklin <jtc@NetBSD.org>.
3
* Public domain.
4
*/
5
6
#include <machine/asm.h>
7
8
RCSID("$NetBSD: e_sqrtf.S,v 1.4 2003/07/26 19:25:00 salo Exp $")
9
10
ENTRY(__ieee754_sqrtf)
11
#ifdef __i386__
12
flds 4(%esp)
13
fsqrt
14
#else
15
sqrtss %xmm0,%xmm0
16
#endif
17
ret