repo.or.cz
/
syslinux-debian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git]
/
com32
/
lib
/
math
/
pow.S
blob
56f504a7f28b6cfb2f6507cb24b315ec0d7ac406
1
/*
2
* pow.S
3
*
4
* double pow(double base, double exponent)
5
*/
6
7
.text
8
.globl pow
9
.type pow,@function
10
pow:
11
fldl 12(%esp)
12
fldl 4(%esp)
13
fyl2x
14
fld %st(0)
15
frndint
16
fsubr %st,%st(1)
17
fxch %st(1)
18
f2xm1
19
fld1
20
faddp %st,%st(1)
21
fscale
22
fstp %st(1)
23
ret
24
25
.size pow,.-pow