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

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

.global scalbnl
.type scalbnl,@function
scalbnl:
	fildl 16(%esp)
	fldt 4(%esp)
	fscale
	fstp %st(1)
	ret