[PATCH] D105201: [hwasan] Detect use after scope within function.
Florian Mayer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 29 09:48:19 PDT 2021
fmayer marked 4 inline comments as done.
fmayer added inline comments.
================
Comment at: llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp:1319
+ bool StandardLifetime = UnrecognizedLifetimes.empty() &&
+ Info.LifetimeStart.size() == 1 &&
+ Info.LifetimeEnd.size() == 1;
----------------
vitalybuka wrote:
> I guess asan handles multiple starts/ends?
this is based on the MTE stack tagging code.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D105201/new/
https://reviews.llvm.org/D105201
More information about the llvm-commits
mailing list