From: Marcus Shawcroft Date: Wed, 16 Jan 2013 12:53:34 +0000 (+0000) Subject: AArch64: Tidyup whitespace. X-Git-Tag: glibc-2.18~803 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62216a0a1e79ea5ce17ad99ef9efbb4aa2afb8c0;p=thirdparty%2Fglibc.git AArch64: Tidyup whitespace. --- diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64 index eb9fb971d02..57c93fa9819 100644 --- a/ports/ChangeLog.aarch64 +++ b/ports/ChangeLog.aarch64 @@ -1,3 +1,8 @@ +2013-01-17 Marcus Shawcroft + + * sysdeps/aarch64/sysdep.h (ENTRY, END): Adjust + whitespace. + 2013-01-10 Joseph Myers * sysdeps/aarch64/bits/setjmp.h (__jmp_buf): Use __extension__ diff --git a/ports/sysdeps/aarch64/sysdep.h b/ports/sysdeps/aarch64/sysdep.h index d9469b8e66c..a0fc329b78d 100644 --- a/ports/sysdeps/aarch64/sysdep.h +++ b/ports/sysdeps/aarch64/sysdep.h @@ -25,24 +25,24 @@ #define ASM_SIZE_DIRECTIVE(name) .size name,.-name /* Define an entry point visible from C. */ -#define ENTRY(name) \ - .globl C_SYMBOL_NAME(name); \ - .type C_SYMBOL_NAME(name),%function; \ - .align 4; \ - C_LABEL(name) \ - cfi_startproc; \ +#define ENTRY(name) \ + .globl C_SYMBOL_NAME(name); \ + .type C_SYMBOL_NAME(name),%function; \ + .align 4; \ + C_LABEL(name) \ + cfi_startproc; \ CALL_MCOUNT #undef END -#define END(name) \ - cfi_endproc; \ +#define END(name) \ + cfi_endproc; \ ASM_SIZE_DIRECTIVE(name) /* If compiled for profiling, call `mcount' at the start of each function. */ #ifdef PROF -# define CALL_MCOUNT \ - str x30, [sp, #-16]!; \ - bl mcount; \ +# define CALL_MCOUNT \ + str x30, [sp, #-16]!; \ + bl mcount; \ ldr x30, [sp], #16 ; #else # define CALL_MCOUNT /* Do nothing. */