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