diff options
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); |