acos.s 311 字节
Newer Older
R
Rich Felker 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.global acosf
.type acosf,@function
acosf:
	flds 4(%esp)
	jmp 1f

.global acosl
.type acosl,@function
acosl:
	fldt 4(%esp)
	jmp 1f

.global acos
.type acos,@function
acos:
	fldl 4(%esp)
17 18
1:	fld1
	fld %st(1)
R
Rich Felker 已提交
19
	fld1
20 21 22 23
	fsubp
	fxch %st(2)
	faddp
	fdivp
R
Rich Felker 已提交
24
	fsqrt
25
	fld1
R
Rich Felker 已提交
26 27
	fxch %st(1)
	fpatan
28 29 30 31
	fld1
	fld1
	faddp
	fmulp
R
Rich Felker 已提交
32
	ret