Author: greatlrd Date: Sun Jul 8 20:09:29 2007 New Revision: 27486
URL: http://svn.reactos.org/svn/reactos?rev=27486&view=rev Log: use // as comment instead for ;
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/log10... ============================================================================== --- trunk/reactos/lib/sdk/crt/math/i386/log10_asm.s (original) +++ trunk/reactos/lib/sdk/crt/math/i386/log10_asm.s Sun Jul 8 20:09:29 2007 @@ -18,10 +18,10 @@
push ebp mov ebp,esp - fld qword ptr [ebp+8] ; Load real from stack - fldlg2 ; Load log base 10 of 2 - fxch st(1) ; Exchange st, st(1) - fyl2x ; Compute the log base 10(x) + fld qword ptr [ebp+8] // Load real from stack + fldlg2 // Load log base 10 of 2 + fxch st(1) // Exchange st, st(1) + fyl2x // Compute the log base 10(x) pop ebp ret