[clang] [LifetimeSafety] Warn on incorrectly placed `[[clang::lifetimebound]]` attributes (PR #196144)
Gábor Horváth via cfe-commits
cfe-commits at lists.llvm.org
Fri May 8 09:11:46 PDT 2026
================
@@ -358,6 +362,18 @@ class LifetimeChecker {
}
}
+ void reportLifetimeboundViolations() {
+ if (!isa<FunctionDecl>(FD))
+ return;
+ for (const ParmVarDecl *PVD : cast<FunctionDecl>(FD)->parameters()) {
+ if (!PVD->hasAttr<LifetimeBoundAttr>())
+ continue;
+ if (!PVD->getAttr<LifetimeBoundAttr>()->isImplicit() &&
----------------
Xazax-hun wrote:
Yeah, I was thinking of an assert fail. That being said if we cannot come up with a sensible assert that would not be triggered currently, I am also fine leaving this as is.
https://github.com/llvm/llvm-project/pull/196144
More information about the cfe-commits
mailing list