Author: ekohl
Date: Sun Jul 8 15:22:39 2007
New Revision: 27466
URL:
http://svn.reactos.org/svn/reactos?rev=27466&view=rev
Log:
Fix bug in log10 function. Patch by Carlo Bramix.
This fixes bug #2357.
Modified:
trunk/reactos/lib/sdk/crt/math/i386/log10_asm.s
Modified: trunk/reactos/lib/sdk/crt/math/i386/log10_asm.s
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/math/i386/log1…
==============================================================================
--- trunk/reactos/lib/sdk/crt/math/i386/log10_asm.s (original)
+++ trunk/reactos/lib/sdk/crt/math/i386/log10_asm.s Sun Jul 8 15:22:39 2007
@@ -17,8 +17,8 @@
_log10:
push ebp
mov ebp,esp
+ fldlg2
fld qword ptr [ebp+8]
- fldlg2
fyl2x
pop ebp
ret