r287063 - [www] Update analyzer website for release of checker-279

Devin Coughlin via cfe-commits cfe-commits at lists.llvm.org
Tue Nov 15 16:47:57 PST 2016


Author: dcoughlin
Date: Tue Nov 15 18:47:56 2016
New Revision: 287063

URL: http://llvm.org/viewvc/llvm-project?rev=287063&view=rev
Log:
[www] Update analyzer website for release of checker-279

Modified:
    cfe/trunk/www/analyzer/index.html
    cfe/trunk/www/analyzer/latest_checker.html.incl
    cfe/trunk/www/analyzer/release_notes.html

Modified: cfe/trunk/www/analyzer/index.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/analyzer/index.html?rev=287063&r1=287062&r2=287063&view=diff
==============================================================================
--- cfe/trunk/www/analyzer/index.html (original)
+++ cfe/trunk/www/analyzer/index.html Tue Nov 15 18:47:56 2016
@@ -95,7 +95,7 @@ applications.</p>
   <div style="padding:15px">
    <h3 style="margin:0px;padding:0px">Mac OS X</h3>
    <ul>
-    <li>Latest build (10.7+):<br>
+    <li>Latest build (10.8+):<br>
      <!--#include virtual="latest_checker.html.incl"-->
     </li>
     <li><a href="/release_notes.html">Release notes</a></li>

Modified: cfe/trunk/www/analyzer/latest_checker.html.incl
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/analyzer/latest_checker.html.incl?rev=287063&r1=287062&r2=287063&view=diff
==============================================================================
--- cfe/trunk/www/analyzer/latest_checker.html.incl (original)
+++ cfe/trunk/www/analyzer/latest_checker.html.incl Tue Nov 15 18:47:56 2016
@@ -1 +1 @@
-<b><a href="downloads/checker-278.tar.bz2">checker-278.tar.bz2</a></b> (built February 5, 2016)
+<b><a href="downloads/checker-279.tar.bz2">checker-279.tar.bz2</a></b> (built November 14, 2016)

Modified: cfe/trunk/www/analyzer/release_notes.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/www/analyzer/release_notes.html?rev=287063&r1=287062&r2=287063&view=diff
==============================================================================
--- cfe/trunk/www/analyzer/release_notes.html (original)
+++ cfe/trunk/www/analyzer/release_notes.html Tue Nov 15 18:47:56 2016
@@ -14,6 +14,25 @@
 <div id="content">
 
 <h1>Release notes for <tt>checker-XXX</tt> builds</h1>
+<h4 id="checker_279">checker-279</h4>
+<p><b>built:</b> November 14, 2016</br>
+	<b>download:</b> <a href="downloads/checker-279.tar.bz2">checker-279.tar.bz2</a></p>
+	<p><b>highlights:</b></p>
+	<ul>
+    <li>The analyzer includes new checks for:
+      <ul>
+        <li>Improper instance cleanup up in Objective-C -dealloc methods under manual retain/release.</li>
+        <li>Inadvertant comparisons of NSNumber, CFNumberRef, and other number object pointers against scalar values.</li>
+        <li>Unsafe usage of dispatch_once_t predicates stored in Objective-C instance variables and other heap-allocated memory.</li>
+        <li>Issues resulting from self-assignment in C++.</li>
+        <li>Incorrect usage of MPI APIs in C and C++. This check can be enabled by passing the following command to scan-build: <br />
+    <tt>-enable-checker optin.mpi.MPI-Checker</tt></li>
+    </ul>
+    <li>The scan-build tool now supports a <tt>--force-analyze-debug-code flag</tt> that forces projects to analyze in debug mode. This flag leaves in assertions and so typically results in fewer false positives.</li>
+    <li>Additional miscellaneous improvements.</li>
+    <li>Now requires macOS 10.8 or later.</li>
+	</ul>
+
 <h4 id="checker_278">checker-278</h4>
 <p><b>built:</b> February 5, 2016</br>
 	<b>download:</b> <a href="downloads/checker-278.tar.bz2">checker-278.tar.bz2</a></p>




More information about the cfe-commits mailing list