Fix format of previous patch (NFC)

llvm-svn: 253503
diff --git a/compiler-rt/lib/profile/InstrProfilingFile.c b/compiler-rt/lib/profile/InstrProfilingFile.c
index 1e2d44b..c226bfa 100644
--- a/compiler-rt/lib/profile/InstrProfilingFile.c
+++ b/compiler-rt/lib/profile/InstrProfilingFile.c
@@ -8,8 +8,8 @@
 \*===----------------------------------------------------------------------===*/
 
 #include "InstrProfiling.h"
-#include "InstrProfilingUtil.h"
 #include "InstrProfilingInternal.h"
+#include "InstrProfilingUtil.h"
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -21,13 +21,14 @@
                          void **File) {
   return fwrite(Data, ElmSize, NumElm, (FILE *)*File);
 }
-  uint8_t *ValueDataBegin = NULL;
+uint8_t *ValueDataBegin = NULL;
 
 static int writeFile(FILE *File) {
   uint8_t *ValueDataBegin = NULL;
-  const uint64_t ValueDataSize = __llvm_profile_gather_value_data(&ValueDataBegin);
+  const uint64_t ValueDataSize =
+      __llvm_profile_gather_value_data(&ValueDataBegin);
   int r = llvmWriteProfData(File, ValueDataBegin, ValueDataSize, FileWriter);
-  free (ValueDataBegin);
+  free(ValueDataBegin);
   return r;
 }
 
diff --git a/compiler-rt/lib/profile/InstrProfilingInternal.h b/compiler-rt/lib/profile/InstrProfilingInternal.h
index 2fa6ea9..c72ca10 100644
--- a/compiler-rt/lib/profile/InstrProfilingInternal.h
+++ b/compiler-rt/lib/profile/InstrProfilingInternal.h
@@ -43,13 +43,15 @@
  */
 typedef size_t (*WriterCallback)(const void *Data, size_t ElmS, size_t NumElm,
                                  void **BufferOrFile);
-int llvmWriteProfData(void *BufferOrFile, const uint8_t *ValueDataBegin, const uint64_t ValueDataSize, WriterCallback Writer);
+int llvmWriteProfData(void *BufferOrFile, const uint8_t *ValueDataBegin,
+                      const uint64_t ValueDataSize, WriterCallback Writer);
 int llvmWriteProfDataImpl(void *BufferOrFile, WriterCallback Writer,
                           const __llvm_profile_data *DataBegin,
                           const __llvm_profile_data *DataEnd,
-                          const uint64_t *CountersBegin, const uint64_t *CountersEnd,
-                          const uint8_t *ValueDataBegin, const uint64_t ValueDataSize,
-                          const char *NamesBegin,
+                          const uint64_t *CountersBegin,
+                          const uint64_t *CountersEnd,
+                          const uint8_t *ValueDataBegin,
+                          const uint64_t ValueDataSize, const char *NamesBegin,
                           const char *NamesEnd);
 
 #endif
diff --git a/compiler-rt/lib/profile/InstrProfilingWriter.c b/compiler-rt/lib/profile/InstrProfilingWriter.c
index 4863768..cdeb661 100644
--- a/compiler-rt/lib/profile/InstrProfilingWriter.c
+++ b/compiler-rt/lib/profile/InstrProfilingWriter.c
@@ -11,7 +11,8 @@
 #include "InstrProfilingInternal.h"
 
 __attribute__((visibility("hidden"))) int
-llvmWriteProfData(void *BufferOrFile, const uint8_t * ValueDataBegin, const uint64_t ValueDataSize,  WriterCallback Writer) {
+llvmWriteProfData(void *BufferOrFile, const uint8_t *ValueDataBegin,
+                  const uint64_t ValueDataSize, WriterCallback Writer) {
   /* Match logic in __llvm_profile_write_buffer(). */
   const __llvm_profile_data *DataBegin = __llvm_profile_begin_data();
   const __llvm_profile_data *DataEnd = __llvm_profile_end_data();
@@ -20,10 +21,8 @@
   const char *NamesBegin = __llvm_profile_begin_names();
   const char *NamesEnd = __llvm_profile_end_names();
   return llvmWriteProfDataImpl(BufferOrFile, Writer, DataBegin, DataEnd,
-                               CountersBegin, CountersEnd,
-                               ValueDataBegin, ValueDataSize,
-                               NamesBegin,
-                               NamesEnd);
+                               CountersBegin, CountersEnd, ValueDataBegin,
+                               ValueDataSize, NamesBegin, NamesEnd);
 }
 
 __attribute__((visibility("hidden"))) int llvmWriteProfDataImpl(
@@ -60,10 +59,10 @@
   Header.ValueDataDelta = (uintptr_t)ValueDataBegin;
 
 /* Write the data. */
-#define CHECK_write(Data, Size, Length, BuffOrFile)                           \
-  do {                                                                        \
-    if (Writer(Data, Size, Length, &BuffOrFile) != Length)                    \
-      return -1;                                                              \
+#define CHECK_write(Data, Size, Length, BuffOrFile)                            \
+  do {                                                                         \
+    if (Writer(Data, Size, Length, &BuffOrFile) != Length)                     \
+      return -1;                                                               \
   } while (0)
   CHECK_write(&Header, sizeof(__llvm_profile_header), 1, BufferOrFile);
   CHECK_write(DataBegin, sizeof(__llvm_profile_data), DataSize, BufferOrFile);