use // as comment instead for ;

svn path=/trunk/; revision=27486
This commit is contained in:
Magnus Olsen 2007-07-08 16:09:29 +00:00
parent ec310c8989
commit 6c0a11007b

View file

@ -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