Code clean-up.
[reactos.git] / reactos / ntoskrnl / ke / i386 / i386-mcount.S
index 8f87398..f2f9eb9 100644 (file)
 /* dwelch: Altered for ReactOS to output the files to port 0xe9 for processing
        by bochs. */
 
-       
+
 .globl _mcount
-_mcount:       
+_mcount:
        /* Save the caller-clobbered registers.  */
-       pushl %eax
-       pushl %ecx
-       pushl %edx
+       pushl   %eax
+       pushl   %ecx
+       pushl   %edx
 
-       movw $0xe9, %dx
-       movl 4(%ebp), %eax
-       outl %eax, %dx
-       movl 12(%esp), %eax
-       outl %eax, %dx
+       movw    $0xe9, %dx
+       movl    4(%ebp), %eax
+       outl    %eax, %dx
+       movl    12(%esp), %eax
+       outl    %eax, %dx
 
        /* Pop the saved registers.  Please note that `mcount' has no
           return value.  */
-       popl %edx
-       popl %ecx
-       popl %eax
+       popl    %edx
+       popl    %ecx
+       popl    %eax
        ret