diff options
author | Xinliang David Li <davidxl@google.com> | 2016-03-04 18:33:49 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-03-04 18:33:49 +0000 |
commit | 6534a8a837a6a6bf9a6e38b214c9b9faaa532ac1 (patch) | |
tree | e156c6a79ad4e84273b16c35fb7301ebb6dc5476 | |
parent | 6448fe632a7d3bb0f89b143d24ec37adc8aee3ab (diff) | |
download | bcm5719-llvm-6534a8a837a6a6bf9a6e38b214c9b9faaa532ac1.tar.gz bcm5719-llvm-6534a8a837a6a6bf9a6e38b214c9b9faaa532ac1.zip |
Fix api visibility
llvm-svn: 262734
-rw-r--r-- | compiler-rt/lib/profile/InstrProfilingMerge.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler-rt/lib/profile/InstrProfilingMerge.c b/compiler-rt/lib/profile/InstrProfilingMerge.c index 820efe3576b..b2f13340976 100644 --- a/compiler-rt/lib/profile/InstrProfilingMerge.c +++ b/compiler-rt/lib/profile/InstrProfilingMerge.c @@ -20,6 +20,7 @@ COMPILER_RT_WEAK void (*VPMergeHook)(ValueProfData *, __llvm_profile_data *) = NULL; +COMPILER_RT_VISIBILITY void __llvm_profile_merge_from_buffer(const char *ProfileData, uint64_t ProfileSize) { __llvm_profile_data *SrcDataStart, *SrcDataEnd, *SrcData, *DstData; |