]> granicus.if.org Git - clang/commitdiff
Wordsmith a bit, and turn </h1> into </h4> when appropriate.
authorTed Kremenek <kremenek@apple.com>
Sat, 9 Jun 2012 20:10:42 +0000 (20:10 +0000)
committerTed Kremenek <kremenek@apple.com>
Sat, 9 Jun 2012 20:10:42 +0000 (20:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158281 91177308-0d34-0410-b5e6-96231b3b80d8

www/analyzer/faq.html

index 8aaea730b3315887e8761a4d4db09631c5f8f14e..1859e78926278067b056470b1829349be75f7e89 100644 (file)
 
 <div id="content">
 
-<h1>FAQ and How to Deal with Common False Positives </h1>
+<h1>FAQ and How to Deal with Common False Positives</h1>
 
-<h4>Q: The analyzer reports a bug on an error path. I do not want the bug being reported here since my custom error handler will safely end the execution before the bug is reached.</h1>
+<h4>Q: The analyzer reports a bug on an error path. I do not want the bug being reported here since my custom error handler will safely end the execution before the bug is reached.</h4>
 
 <img src="images/example_custom_assert.png" alt="example custom assert">
 
 <p>You can tell the analyzer that this path is unreachable by teaching it about your <a href = "annotations.html#custom_assertions" >custom assertion handlers</a>.</p>
 
-<h4>Q: The analyzer reports "Dereference of null pointer", but I know that the pointer is never null.</h1>
+<h4>Q: The analyzer reports "Dereference of null pointer", but I know that the pointer is never null.</h4>
 
 <img src="images/example_null_pointer.png" alt="example null pointer">
 
 <p>The reason the analyzer often thinks that a pointer can be null is because the preceding code checked compared it against null. So if you are absolutely sure that it cannot be null, remove the preceding check and, preferably, add an assert as well. For example, in the code segment above, it will be sufficient to remove the <tt>if (!b)</tt> check. </p>
 
-<h4>Q: The analyzer assumes that the loop body is never entered, which can never happen in this code.</h1>
+<h4>Q: The analyzer assumes that the loop body is never entered, which can never happen in this code.</h4>
 
 <img src="images/example_use_assert.png" alt="example use assert">
 
 <p>You can teach the analyzer facts about your code as well as document it by using asserts. In the contrived example above, the analyzer reports an error on the path which assumes that the loop is never entered. However, the owner of the code might know that the loop is always entered because the input parameter <tt>length</tt> is always greater than <tt>0</tt>. The false positive can be suppressed by asserting this knowledge, adding <tt>assert(length > 0)</tt> in the beginning of the function.</p>
 
-<h4>Q: How can I suppress the analyzer warning?</h1>
+<h4>Q: How can I suppress the analyzer warning?</h4>
 
 <img src="images/example_null_pointer.png" alt="example null pointer">
 
-<p>Unfortunately, there is no mechanism for suppressing the analyzer warning. If you ran into an analyzer bug/false positive, please <a href = "filing_bugs.html">report it</a>.</p>
+<p>There is currently no mechanism for suppressing the analyzer warning,
+although this is currently being investigated. If you encounter an analyzer
+bug/false positive, please <a href = "filing_bugs.html">report it</a>.</p>
 
 </div>
 </div>