diff options
Diffstat (limited to 'ports')
-rw-r--r-- | ports/ChangeLog.aarch64 | 5 | ||||
-rw-r--r-- | ports/sysdeps/aarch64/sysdep.h | 22 |
2 files changed, 16 insertions, 11 deletions
diff --git a/ports/ChangeLog.aarch64 b/ports/ChangeLog.aarch64 index eb9fb971d0..57c93fa981 100644 --- a/ports/ChangeLog.aarch64 +++ b/ports/ChangeLog.aarch64 @@ -1,3 +1,8 @@ +2013-01-17 Marcus Shawcroft <marcus.shawcroft@linaro.org> + + * sysdeps/aarch64/sysdep.h (ENTRY, END): Adjust + whitespace. + 2013-01-10 Joseph Myers <joseph@codesourcery.com> * sysdeps/aarch64/bits/setjmp.h (__jmp_buf): Use __extension__ diff --git a/ports/sysdeps/aarch64/sysdep.h b/ports/sysdeps/aarch64/sysdep.h index d9469b8e66..a0fc329b78 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. */ |