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 3130ad5 commit 825d739Copy full SHA for 825d739
clang/lib/Analysis/LifetimeSafety.cpp
@@ -738,14 +738,6 @@ class LoanPropagationAnalysis
738
return Lattice(JoinedOrigins);
739
}
740
741
- LoanSet join(LoanSet A, LoanSet B) {
742
- if (A.getHeight() < B.getHeight())
743
- std::swap(A, B);
744
- for (LoanID L : B)
745
- A = Factory.LoanSetFactory.add(A, L);
746
- return A;
747
- }
748
-
749
/// A new loan is issued to the origin. Old loans are erased.
750
Lattice transfer(Lattice In, const IssueFact &F) {
751
OriginID OID = F.getOriginID();
0 commit comments