File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class DominatorAnalysis
5454 HasNonDominatedPred = true ;
5555 });
5656 if (HasDominatedPred && HasNonDominatedPred)
57- Result.insert (Candidates. begin (), Candidates. end () );
57+ Result.insert_range (Candidates);
5858 if ((*this ->getStateAt (ProgramPoint::getLastPointAt (BB)))[DomIdx] &&
5959 BB.succ_begin () == BB.succ_end ())
6060 Result.insert (ProgramPoint::getLastPointAt (BB));
Original file line number Diff line number Diff line change @@ -1997,7 +1997,7 @@ void BinaryFunction::postProcessJumpTables() {
19971997bool BinaryFunction::validateExternallyReferencedOffsets () {
19981998 SmallPtrSet<MCSymbol *, 4 > JTTargets;
19991999 for (const JumpTable *JT : llvm::make_second_range (JumpTables))
2000- JTTargets.insert (JT->Entries . begin (), JT-> Entries . end () );
2000+ JTTargets.insert_range (JT->Entries );
20012001
20022002 bool HasUnclaimedReference = false ;
20032003 for (uint64_t Destination : ExternallyReferencedOffsets) {
You can’t perform that action at this time.
0 commit comments