diff options
author | Xinliang David Li <davidxl@google.com> | 2016-03-06 04:18:13 +0000 |
---|---|---|
committer | Xinliang David Li <davidxl@google.com> | 2016-03-06 04:18:13 +0000 |
commit | cf1a8d69129992fbddccffbaf8c2e9d81be51e67 (patch) | |
tree | 0962e32ef28d05b5b0ba84cf2510baff9de48684 /compiler-rt/lib/profile/InstrProfilingMergeFile.c | |
parent | 32effa19740bba5caaf244f838e3a400469dd83d (diff) | |
download | bcm5719-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.c | 6 |
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); |