We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
StableFunctionMap::at
1 parent cbbfd9a commit 9648230Copy full SHA for 9648230
llvm/lib/CGData/StableFunctionMap.cpp
@@ -137,6 +137,7 @@ size_t StableFunctionMap::size(SizeType Type) const {
137
const StableFunctionMap::StableFunctionEntries &
138
StableFunctionMap::at(HashFuncsMapType::key_type FunctionHash) const {
139
auto It = HashToFuncs.find(FunctionHash);
140
+ assert(It != HashToFuncs.end() && "FunctionHash not found!");
141
if (isLazilyLoaded())
142
deserializeLazyLoadingEntry(It);
143
return It->second.Entries;
0 commit comments