[llvm] f0a68bb - SampleProf.h - fix spelling mistake in assert message. NFC.
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Fri Jun 11 02:24:40 PDT 2021
Author: Simon Pilgrim
Date: 2021-06-11T10:24:14+01:00
New Revision: f0a68bbc967ab851e9b678feaf9015a2bfadb12e
URL: https://github.com/llvm/llvm-project/commit/f0a68bbc967ab851e9b678feaf9015a2bfadb12e
DIFF: https://github.com/llvm/llvm-project/commit/f0a68bbc967ab851e9b678feaf9015a2bfadb12e.diff
LOG: SampleProf.h - fix spelling mistake in assert message. NFC.
Added:
Modified:
llvm/include/llvm/ProfileData/SampleProf.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/ProfileData/SampleProf.h b/llvm/include/llvm/ProfileData/SampleProf.h
index cbdf5d577372b..31d3d85da2428 100644
--- a/llvm/include/llvm/ProfileData/SampleProf.h
+++ b/llvm/include/llvm/ProfileData/SampleProf.h
@@ -845,7 +845,7 @@ class FunctionSamples {
if (!UseMD5)
return Name;
- assert(GUIDToFuncNameMap && "GUIDToFuncNameMap needs to be popluated first");
+ assert(GUIDToFuncNameMap && "GUIDToFuncNameMap needs to be populated first");
return GUIDToFuncNameMap->lookup(std::stoull(Name.data()));
}
More information about the llvm-commits
mailing list