From 78162766a5b230f16a0953f9c91671dfaaa4565d Mon Sep 17 00:00:00 2001 From: Vitaly Buka Date: Tue, 2 Aug 2016 17:51:48 +0000 Subject: [PATCH] Updated documentation Reviewers: kcc, eugenis Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D22992 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277488 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/AddressSanitizer.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/AddressSanitizer.rst b/docs/AddressSanitizer.rst index a42a1ff623..f64f60d0d4 100644 --- a/docs/AddressSanitizer.rst +++ b/docs/AddressSanitizer.rst @@ -14,7 +14,8 @@ following types of bugs: * Out-of-bounds accesses to heap, stack and globals * Use-after-free -* Use-after-return (to some extent) +* Use-after-return (runtime flag `ASAN_OPTIONS=detect_stack_use_after_return=1`) +* Use-after-scope (clang flag `-fsanitize-address-use-after-scope`) * Double-free, invalid free * Memory leaks (experimental) -- 2.40.0