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.
1 parent 29c0dac commit ecbb519Copy full SHA for ecbb519
llvm/lib/Transforms/IPO/PartialInlining.cpp
@@ -412,7 +412,7 @@ PartialInlinerImpl::computeOutliningColdRegionsInfo(
412
bool ColdCandidateFound = false;
413
BasicBlock *CurrEntry = EntryBlock;
414
std::vector<BasicBlock *> DFS;
415
- DenseSet<BasicBlock *> VisitedSet;
+ SmallPtrSet<BasicBlock *, 8> VisitedSet;
416
DFS.push_back(CurrEntry);
417
VisitedSet.insert(CurrEntry);
418
0 commit comments