summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Matveev <earthdok@google.com>2013-05-14 15:48:54 +0000
committerSergey Matveev <earthdok@google.com>2013-05-14 15:48:54 +0000
commit4a25a62bdfc18edbb475192d72076b450fd86fbf (patch)
tree20e500f14af7837ff3c92fa401140ec071df5143
parent4537d6e0f9baf2e011a4260e0d7872789b01c3f2 (diff)
downloadclang-4a25a62bdfc18edbb475192d72076b450fd86fbf.tar.gz
clang-4a25a62bdfc18edbb475192d72076b450fd86fbf.tar.bz2
clang-4a25a62bdfc18edbb475192d72076b450fd86fbf.tar.xz
Add LeakSanitizer.rst to docs.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@181798 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LeakSanitizer.rst28
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/LeakSanitizer.rst b/docs/LeakSanitizer.rst
new file mode 100644
index 0000000000..09d02cfcd5
--- /dev/null
+++ b/docs/LeakSanitizer.rst
@@ -0,0 +1,28 @@
+================
+LeakSanitizer
+================
+
+.. contents::
+ :local:
+
+Introduction
+============
+
+LeakSanitizer is a heap leak detector which is designed to be used on top of
+:doc:`AddressSanitizer` / :doc:`MemorySanitizer`, or as a standalone library.
+LeakSanitizer is a run-time tool which doesn't require compiler
+instrumentation.
+
+Current status
+==============
+
+LeakSanitizer is a work in progress, currently under development for
+x86\_64 Linux.
+
+More Information
+================
+
+Design wiki:
+`https://code.google.com/p/address-sanitizer/wiki/LeakSanitizerDesignDocument
+<https://code.google.com/p/address-sanitizer/wiki/LeakSanitizerDesignDocument>`_
+