summaryrefslogtreecommitdiff
path: root/lib/profile/InstrProfilingInternal.h
diff options
context:
space:
mode:
authorXinliang David Li <davidxl@google.com>2015-11-18 21:11:46 +0000
committerXinliang David Li <davidxl@google.com>2015-11-18 21:11:46 +0000
commita8e5026dd9886ee7fbe52ebb8226392de0ac97f2 (patch)
treeb724247290ee24923004e51606c03c89a39ea35a /lib/profile/InstrProfilingInternal.h
parent82f3febc95e44d30cd414577c77c92b60345bb4b (diff)
downloadcompiler-rt-a8e5026dd9886ee7fbe52ebb8226392de0ac97f2.tar.gz
Fix format of previous patch (NFC)
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@253503 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/profile/InstrProfilingInternal.h')
-rw-r--r--lib/profile/InstrProfilingInternal.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/profile/InstrProfilingInternal.h b/lib/profile/InstrProfilingInternal.h
index 2fa6ea9af..c72ca106e 100644
--- a/lib/profile/InstrProfilingInternal.h
+++ b/lib/profile/InstrProfilingInternal.h
@@ -43,13 +43,15 @@ int __llvm_profile_write_buffer_internal(
*/
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