trailing whitespaces in asm

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2009-08-03 13:52:03 +02:00
parent fe7546f39a
commit 23a2f35a0b

View file

@ -17,12 +17,12 @@
*/ */
#include <grub/symbol.h> #include <grub/symbol.h>
#ifdef BACKWARD #ifdef BACKWARD
#define RELOCATOR_VARIABLE(x) VARIABLE(grub_relocator32_backward_ ## x) #define RELOCATOR_VARIABLE(x) VARIABLE(grub_relocator32_backward_ ## x)
#else #else
#define RELOCATOR_VARIABLE(x) VARIABLE(grub_relocator32_forward_ ## x) #define RELOCATOR_VARIABLE(x) VARIABLE(grub_relocator32_forward_ ## x)
#endif #endif
.p2align 4 /* force 16-byte alignment */ .p2align 4 /* force 16-byte alignment */
RELOCATOR_VARIABLE(start) RELOCATOR_VARIABLE(start)
@ -201,9 +201,9 @@ cont2:
.byte 0xb8 .byte 0xb8
RELOCATOR_VARIABLE (esp) RELOCATOR_VARIABLE (esp)
.long 0 .long 0
movl %eax, %esp movl %eax, %esp
/* mov imm32, %eax */ /* mov imm32, %eax */
.byte 0xb8 .byte 0xb8
RELOCATOR_VARIABLE (eax) RELOCATOR_VARIABLE (eax)
@ -270,5 +270,4 @@ jump_vector:
base: base:
#endif #endif
RELOCATOR_VARIABLE(end) RELOCATOR_VARIABLE(end)