[PATCH] D137992: [asan] -fsanitize-address-outline-instrumentation -> -asan-max-inline-poisoning-size=0
Roy Sundahl via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Nov 15 08:41:14 PST 2022
rsundahl updated this revision to Diff 475497.
rsundahl added a comment.
Removed extraneous blank line.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D137992/new/
https://reviews.llvm.org/D137992
Files:
clang/lib/Driver/SanitizerArgs.cpp
Index: clang/lib/Driver/SanitizerArgs.cpp
===================================================================
--- clang/lib/Driver/SanitizerArgs.cpp
+++ clang/lib/Driver/SanitizerArgs.cpp
@@ -1256,6 +1256,8 @@
if (AsanOutlineInstrumentation) {
CmdArgs.push_back("-mllvm");
CmdArgs.push_back("-asan-instrumentation-with-call-threshold=0");
+ CmdArgs.push_back("-mllvm");
+ CmdArgs.push_back("-asan-max-inline-poisoning-size=0");
}
// Only pass the option to the frontend if the user requested,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D137992.475497.patch
Type: text/x-patch
Size: 520 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221115/7a7a221d/attachment-0001.bin>
More information about the cfe-commits
mailing list