From 6c0a11007bbc026fdbbdcb6a6a94f34bcc9f6dab Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Sun, 8 Jul 2007 16:09:29 +0000 Subject: [PATCH] use // as comment instead for ; svn path=/trunk/; revision=27486 --- reactos/lib/sdk/crt/math/i386/log10_asm.s | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/lib/sdk/crt/math/i386/log10_asm.s b/reactos/lib/sdk/crt/math/i386/log10_asm.s index 42ea6710fe9..71731816429 100644 --- a/reactos/lib/sdk/crt/math/i386/log10_asm.s +++ b/reactos/lib/sdk/crt/math/i386/log10_asm.s @@ -18,10 +18,10 @@ _log10: 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