AArch64: Tidyup whitespace.
authorMarcus Shawcroft <marcus.shawcroft@linaro.org>
Wed, 16 Jan 2013 12:53:34 +0000 (12:53 +0000)
committerMarcus Shawcroft <marcus.shawcroft@linaro.org>
Thu, 17 Jan 2013 10:56:48 +0000 (10:56 +0000)
ports/ChangeLog.aarch64
ports/sysdeps/aarch64/sysdep.h

index eb9fb97..57c93fa 100644 (file)
@@ -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__
index d9469b8..a0fc329 100644 (file)
 #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.  */