[llvm] [AddressSanitizer] Remove memory effects from functions (PR #130495)
Vitaly Buka via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 20:00:31 PDT 2025
================
@@ -788,6 +788,8 @@ Expected<AddressSanitizerOptions> parseASanPassOptions(StringRef Params) {
if (ParamName == "kernel") {
Result.CompileKernel = true;
+ } else if (ParamName == "use-after-scope") {
----------------
vitalybuka wrote:
can you please extract this into a separate PR, with corresponding test
also we need similar change in AddressSanitizerPass::printPipeline, with tests
https://github.com/llvm/llvm-project/pull/130495
More information about the llvm-commits
mailing list