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 9bff7d6 commit ab24c4eCopy full SHA for ab24c4e
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