diff options
| author | Sergey Matveev <earthdok@google.com> | 2013-05-14 15:48:54 +0000 |
|---|---|---|
| committer | Sergey Matveev <earthdok@google.com> | 2013-05-14 15:48:54 +0000 |
| commit | f4633ac7408e8ccc06bc5c8488c13e2929fe268a (patch) | |
| tree | 34ee0ebfe8c9b738746db971c3a8f579df4a3ce5 | |
| parent | c61e350a7d4af4dfe694d66b0227afcc2759ae95 (diff) | |
| download | bcm5719-llvm-f4633ac7408e8ccc06bc5c8488c13e2929fe268a.tar.gz bcm5719-llvm-f4633ac7408e8ccc06bc5c8488c13e2929fe268a.zip | |
Add LeakSanitizer.rst to docs.
llvm-svn: 181798
| -rw-r--r-- | clang/docs/LeakSanitizer.rst | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/clang/docs/LeakSanitizer.rst b/clang/docs/LeakSanitizer.rst new file mode 100644 index 00000000000..09d02cfcd5d --- /dev/null +++ b/clang/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>`_ + |

