summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/profile/InstrProfilingMergeFile.c
diff options
context:
space:
mode:
authorXinliang David Li <davidxl@google.com>2016-03-06 04:18:13 +0000
committerXinliang David Li <davidxl@google.com>2016-03-06 04:18:13 +0000
commitcf1a8d69129992fbddccffbaf8c2e9d81be51e67 (patch)
tree0962e32ef28d05b5b0ba84cf2510baff9de48684 /compiler-rt/lib/profile/InstrProfilingMergeFile.c
parent32effa19740bba5caaf244f838e3a400469dd83d (diff)
downloadbcm5719-llvm-cf1a8d69129992fbddccffbaf8c2e9d81be51e67.tar.gz
bcm5719-llvm-cf1a8d69129992fbddccffbaf8c2e9d81be51e67.zip
[PGO] internal API name cleanups (for better consistency)
llvm-svn: 262788
Diffstat (limited to 'compiler-rt/lib/profile/InstrProfilingMergeFile.c')
-rw-r--r--compiler-rt/lib/profile/InstrProfilingMergeFile.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler-rt/lib/profile/InstrProfilingMergeFile.c b/compiler-rt/lib/profile/InstrProfilingMergeFile.c
index bfcca8fc9cb..ac5ee9fbedc 100644
--- a/compiler-rt/lib/profile/InstrProfilingMergeFile.c
+++ b/compiler-rt/lib/profile/InstrProfilingMergeFile.c
@@ -18,12 +18,12 @@
#include "InstrProfData.inc"
void (*VPMergeHook)(ValueProfData *,
- __llvm_profile_data *) = &mergeValueProfData;
+ __llvm_profile_data *) = &lprofMergeValueProfData;
/* Merge value profile data pointed to by SrcValueProfData into
* in-memory profile counters pointed by to DstData. */
-void mergeValueProfData(ValueProfData *SrcValueProfData,
- __llvm_profile_data *DstData) {
+void lprofMergeValueProfData(ValueProfData *SrcValueProfData,
+ __llvm_profile_data *DstData) {
unsigned I, S, V, C;
InstrProfValueData *VData;
ValueProfRecord *VR = getFirstValueProfRecord(SrcValueProfData);
OpenPOWER on IntegriCloud