r197022 - Mention LeakSanitizer in AddressSanitizer docs.
Sergey Matveev
earthdok at google.com
Wed Dec 11 01:14:37 PST 2013
Author: smatveev
Date: Wed Dec 11 03:14:36 2013
New Revision: 197022
URL: http://llvm.org/viewvc/llvm-project?rev=197022&view=rev
Log:
Mention LeakSanitizer in AddressSanitizer docs.
Modified:
cfe/trunk/docs/AddressSanitizer.rst
Modified: cfe/trunk/docs/AddressSanitizer.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/AddressSanitizer.rst?rev=197022&r1=197021&r2=197022&view=diff
==============================================================================
--- cfe/trunk/docs/AddressSanitizer.rst (original)
+++ cfe/trunk/docs/AddressSanitizer.rst Wed Dec 11 03:14:36 2013
@@ -16,6 +16,7 @@ following types of bugs:
* Use-after-free
* Use-after-return (to some extent)
* Double-free, invalid free
+* Memory leaks (experimental)
Typical slowdown introduced by AddressSanitizer is **2x**.
@@ -155,6 +156,12 @@ problems happening in certain source fil
type:*BadInitClassSubstring*=init
src:bad/init/files/*=init
+Memory leak detection
+---------------------
+
+For the experimental memory leak detector in AddressSanitizer, see
+:doc:`LeakSanitizer`.
+
Supported Platforms
===================
More information about the cfe-commits
mailing list