scalbnf.s 243 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
.global ldexpf
.type ldexpf,@function
ldexpf:
	nop

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

.global scalbnf
.type scalbnf,@function
scalbnf:
	fildl 8(%esp)
	flds 4(%esp)
	fscale
	fstp %st(1)
	fstps 4(%esp)
	flds 4(%esp)
	ret