]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[AArch64] Fix whitespace around PROFILE_HOOK.
authorMarcus Shawcroft <marcus.shawcroft@arm.com>
Tue, 19 Nov 2013 16:33:03 +0000 (16:33 +0000)
committerMarcus Shawcroft <mshawcroft@gcc.gnu.org>
Tue, 19 Nov 2013 16:33:03 +0000 (16:33 +0000)
From-SVN: r205041

gcc/ChangeLog
gcc/config/aarch64/aarch64.h

index 62294b45a9f9bcec7311a18616304dfbda100fd9..d91fd75a4b9282e0b7095011f3ba1bbbc7ef97e1 100644 (file)
@@ -1,3 +1,7 @@
+2013-11-19  Marcus Shawcroft  <marcus.shawcroft@arm.com>
+
+       * config/aarch64/aarch64.h (PROFILE_HOOK): Fix whitespace.
+
 2013-11-19  Joseph Myers  <joseph@codesourcery.com>
 
        * varasm.c (align_variable): Give error instead of warning for
index 8b55a7bb7b59c4f81089e9b925b6f6f04a08c122..228115f50fc772bf22638d1038cb245f4fe681c2 100644 (file)
@@ -789,13 +789,13 @@ do {                                                                           \
 
 /* Emit rtl for profiling.  Output assembler code to FILE
    to call "_mcount" for profiling a function entry.  */
-#define PROFILE_HOOK(LABEL)                                    \
-{                                                              \
-  rtx fun,lr;                                                  \
-  lr = get_hard_reg_initial_val (Pmode, LR_REGNUM);            \
-  fun = gen_rtx_SYMBOL_REF (Pmode, MCOUNT_NAME);               \
-  emit_library_call (fun, LCT_NORMAL, VOIDmode, 1, lr, Pmode); \
-}
+#define PROFILE_HOOK(LABEL)                                            \
+  {                                                                    \
+    rtx fun, lr;                                                       \
+    lr = get_hard_reg_initial_val (Pmode, LR_REGNUM);                  \
+    fun = gen_rtx_SYMBOL_REF (Pmode, MCOUNT_NAME);                     \
+    emit_library_call (fun, LCT_NORMAL, VOIDmode, 1, lr, Pmode);       \
+  }
 
 /* All the work done in PROFILE_HOOK, but still required.  */
 #define FUNCTION_PROFILER(STREAM, LABELNO) do { } while (0)