summaryrefslogtreecommitdiff
path: root/src/math/i386/scalbn.s
blob: e275d14f640971beea1a0e67e8b90dfbfcc45e66 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.global ldexp
.type ldexp,@function
ldexp:
	nop

.global scalbln
.type scalbln,@function
scalbln:
	nop

.global scalbn
.type scalbn,@function
scalbn:
	fildl 12(%esp)
	fldl 4(%esp)
	fscale
	fstp %st(1)
	fstpl 4(%esp)
	fldl 4(%esp)
	ret