summaryrefslogtreecommitdiff
path: root/src/math/i386/s_scalblnf.s
blob: 775765a3cdec7c3a3deba9cf5b7c87e8bdd949e1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.global ldexpf
.global scalbnf
.global scalblnf
.type ldexpf,@function
.type scalbnf,@function
.type scalblnf,@function
ldexpf:
scalbnf:
scalblnf:
	fildl 8(%esp)
	flds 4(%esp)
	fscale
	fstp %st(1)
	ret