[llvm-commits] [llvm] r142991 - /llvm/trunk/docs/ReleaseNotes.html

Bill Wendling isanbard at gmail.com
Tue Oct 25 17:17:54 PDT 2011


Author: void
Date: Tue Oct 25 19:17:54 2011
New Revision: 142991

URL: http://llvm.org/viewvc/llvm-project?rev=142991&view=rev
Log:
Add mention of AddressSanitizer to external OS projects.

Modified:
    llvm/trunk/docs/ReleaseNotes.html

Modified: llvm/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ReleaseNotes.html?rev=142991&r1=142990&r2=142991&view=diff
==============================================================================
--- llvm/trunk/docs/ReleaseNotes.html (original)
+++ llvm/trunk/docs/ReleaseNotes.html Tue Oct 25 19:17:54 2011
@@ -284,6 +284,19 @@
    projects that have already been updated to work with LLVM 3.0.</p>
 
 <!--=========================================================================-->
+<h3>AddressSanitizer</h3>
+  
+<div>
+
+<p><a href="http://code.google.com/p/address-sanitizer/">AddressSanitizer</a>
+   uses compiler instrumentation and a specialized malloc library to find C/C++
+   bugs such as use-after-free and out-of-bound accesses to heap, stack, and
+   globals. The key feature of the tool is speed: the average slowdown
+   introduced by AddressSanitizer is less than 2x.</p>
+
+</div>
+
+<!--=========================================================================-->
 <h3>ClamAV</h3>
   
 <div>





More information about the llvm-commits mailing list