diff options
Diffstat (limited to 'compiler-rt/lib/profile/InstrProfiling.h')
| -rw-r--r-- | compiler-rt/lib/profile/InstrProfiling.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/compiler-rt/lib/profile/InstrProfiling.h b/compiler-rt/lib/profile/InstrProfiling.h index c5dd641fc88..a086f3d4496 100644 --- a/compiler-rt/lib/profile/InstrProfiling.h +++ b/compiler-rt/lib/profile/InstrProfiling.h @@ -50,15 +50,15 @@ uint64_t __llvm_profile_get_size_for_buffer(void); */ int __llvm_profile_write_buffer(char *Buffer); -const __llvm_profile_data *__llvm_profile_data_begin(void); -const __llvm_profile_data *__llvm_profile_data_end(void); -const char *__llvm_profile_names_begin(void); -const char *__llvm_profile_names_end(void); -uint64_t *__llvm_profile_counters_begin(void); -uint64_t *__llvm_profile_counters_end(void); +const __llvm_profile_data *__llvm_profile_begin_data(void); +const __llvm_profile_data *__llvm_profile_end_data(void); +const char *__llvm_profile_begin_names(void); +const char *__llvm_profile_end_names(void); +uint64_t *__llvm_profile_begin_counters(void); +uint64_t *__llvm_profile_end_counters(void); #define PROFILE_RANGE_SIZE(Range) \ - (__llvm_profile_ ## Range ## _end() - __llvm_profile_ ## Range ## _begin()) + (__llvm_profile_end_ ## Range () - __llvm_profile_begin_ ## Range ()) /*! * \brief Write instrumentation data to the current file. |

