Fix bug in log10 function. Patch by Carlo Bramix.

This fixes bug #2357.

svn path=/trunk/; revision=27466
This commit is contained in:
Eric Kohl 2007-07-08 11:22:39 +00:00
parent aba2e5a942
commit 9699821101

View file

@ -17,8 +17,8 @@
_log10:
push ebp
mov ebp,esp
fld qword ptr [ebp+8]
fldlg2
fld qword ptr [ebp+8]
fyl2x
pop ebp
ret