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
VM: full munmap
[minix.git]
/
lib
/
libm
/
arch
/
i387
/
e_sqrt.S
blob
afae87ffc705c3d4669e87503b6aabeb954c0457
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_sqrt.S,v 1.6 2003/07/26 19:25:00 salo Exp $")
9
10
ENTRY(__ieee754_sqrt)
11
#ifdef __i386__
12
fldl 4(%esp)
13
fsqrt
14
#else
15
sqrtsd %xmm0,%xmm0
16
#endif
17
ret