summaryrefslogtreecommitdiff
path: root/src/math/i386/log.s
blob: 08c59924b4afeb3713f59064645ca3daab7c8e6c (plain) (blame)
1
2
3
4
5
6
7
8
9
.global log
.type log,@function
log:
	fldln2
	fldl 4(%esp)
	fyl2x
	fstpl 4(%esp)
	fldl 4(%esp)
	ret