diff --git a/llvm/lib/ProfileData/MemProfReader.cpp b/llvm/lib/ProfileData/MemProfReader.cpp index 9dd43d34f2a0b..10c36f25c4b79 100644 --- a/llvm/lib/ProfileData/MemProfReader.cpp +++ b/llvm/lib/ProfileData/MemProfReader.cpp @@ -596,8 +596,8 @@ Error RawMemProfReader::symbolizeAndFilterStackFrames( // Drop the entries where the callstack is empty. for (const uint64_t Id : EntriesToErase) { StackMap.erase(Id); - if(CallstackProfileData[Id].AccessHistogramSize > 0) - free((void*) CallstackProfileData[Id].AccessHistogram); + if (CallstackProfileData[Id].AccessHistogramSize > 0) + free((void *)CallstackProfileData[Id].AccessHistogram); CallstackProfileData.erase(Id); } diff --git a/llvm/lib/Transforms/Instrumentation/MemProfiler.cpp b/llvm/lib/Transforms/Instrumentation/MemProfiler.cpp index db8999911b7f9..fea45d53b2eb4 100644 --- a/llvm/lib/Transforms/Instrumentation/MemProfiler.cpp +++ b/llvm/lib/Transforms/Instrumentation/MemProfiler.cpp @@ -152,7 +152,7 @@ static cl::opt ClDebugMax("memprof-debug-max", cl::desc("Debug max inst"), // override these hints anyway. static cl::opt ClMemProfMatchHotColdNew( "memprof-match-hot-cold-new", - cl::desc( + cl::desc( "Match allocation profiles onto existing hot/cold operator new calls"), cl::Hidden, cl::init(false));