[clang] [ubsan] Add more -fsanitize-annotate-debug-info checks (PR #141997)
Vitaly Buka via cfe-commits
cfe-commits at lists.llvm.org
Mon Jun 2 16:02:59 PDT 2025
================
@@ -2755,9 +2757,18 @@ CodeGenFunction::CGCapturedStmtInfo::~CGCapturedStmtInfo() { }
CodeGenFunction::SanitizerScope::SanitizerScope(CodeGenFunction *CGF)
: CGF(CGF) {
assert(!CGF->IsSanitizerScope);
+ assert(!ApplyTrapDI);
CGF->IsSanitizerScope = true;
}
+CodeGenFunction::SanitizerScope::SanitizerScope(
+ CodeGenFunction *CGF, ArrayRef<SanitizerKind::SanitizerOrdinal> Ordinals,
+ SanitizerHandler Handler)
+ : SanitizerScope(CGF) {
----------------
vitalybuka wrote:
```suggestion
: SanitizerScope(CGF), ApplyTrapDI(std::make_unique<ApplyDebugLocation>(
*CGF, CGF->SanitizerAnnotateDebugInfo(Ordinals, Handler))) {
```
https://github.com/llvm/llvm-project/pull/141997
More information about the cfe-commits
mailing list