[clang] [clang] Implement lifetime analysis for lifetime_capture_by(X) (PR #115921)

Utkarsh Saxena via cfe-commits cfe-commits at lists.llvm.org
Sun Nov 17 21:00:30 PST 2024


================
@@ -249,7 +254,7 @@ static void visitLocalsRetainedByReferenceBinding(IndirectLocalPath &Path,
                                                   LocalVisitor Visit);
 
 template <typename T> static bool isRecordWithAttr(QualType Type) {
-  if (auto *RD = Type->getAsCXXRecordDecl())
+  if (auto *RD = Type.getNonReferenceType()->getAsCXXRecordDecl())
----------------
usx95 wrote:

I will remove this for now from this PR and leave the tests with a FIXME. Probably needs a separate PR to keep this PR simpler.
It is not possible to do before this PR because I do not have non-lifetime_capture_by tests for it.

https://github.com/llvm/llvm-project/pull/115921


More information about the cfe-commits mailing list