aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-12-17 06:24:36 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-12-17 06:24:36 +0000
commit2df16588ba95f76082b7dc5bb04a574ae009a1fb (patch)
treebdf55a8ebe6104a56099921923e45efe2d55380b
parent9e6111ad10d29802d8eff99c941d262979e99084 (diff)
Clean up a small (messy) section of Clang's release notes for 3.2.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@170309 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.html20
1 files changed, 8 insertions, 12 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index f1f70c77f7..b49542fa1f 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -170,18 +170,14 @@ int f(vector&lt;map&lt;int, double&gt;&gt;);
</li>
- <li>Clang's <tt>-fcatch-undefined-behavior</tt> option has been renamed to
- <tt>-fsanitize=undefined</tt> and has grown the ability to check for several
- new types of undefined behavior. See the Users Manual for more information.
-
-
- <li><tt>-Wdocumentation</tt> enables warnings about documentation comments.
- See section "Documentation comment support" for an example.</li>
-
- <!-- Flesh this out prior to release. -->
-
- <!-- Document renaming of -faddress-sanitizer and -fthread-sanitizer. -->
-
+ <li>The Address Sanitizer feature and Clang's
+ <tt>-fcatch-undefined-behavior</tt> option have been moved to a unified flag
+ set: <tt>-fsanitize</tt>. This flag can be used to enable the different
+ dynamic checking tools when building. For example,
+ <tt>-faddress-sanitizer</tt> is now <tt>-fsanitize=address</tt>, and
+ <tt>-fcatch-undefined-behavior</tt> is now <tt>-fsanitize=undefined</tt>.
+ With this release the set of checks available continues to grow, see the Clang
+ documentaion and specific sanitizer notes below for details.
</li>
</ul>