Clean up a small (messy) section of Clang's release notes for 3.2.

llvm-svn: 170309
This commit is contained in:
Chandler Carruth 2012-12-17 06:24:36 +00:00
parent 354ed773b8
commit 1aa9f173fc
1 changed files with 8 additions and 12 deletions

View File

@ -170,18 +170,14 @@ int f(vector<map<int, double>>);
</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>