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_scalb.S
blob
8717aa7cb0345ad66a96f7672fdedb1ae21b4665
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: e_scalb.S,v 1.7 2003/07/26 19:25:00 salo Exp $")
11
12
ENTRY(__ieee754_scalb)
13
XMM_TWO_ARG_DOUBLE_PROLOGUE
14
fldl ARG_DOUBLE_TWO
15
fldl ARG_DOUBLE_ONE
16
fscale
17
fstp %st(1) /* bug fix for fp stack overflow */
18
XMM_DOUBLE_EPILOGUE
19
ret