Skip to content
Snippets Groups Projects
Commit 2df16588 authored by Chandler Carruth's avatar Chandler Carruth
Browse files

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
parent 9e6111ad
No related branches found
No related tags found
No related merge requests found
...@@ -170,18 +170,14 @@ int f(vector<map<int, double>>); ...@@ -170,18 +170,14 @@ int f(vector<map<int, double>>);
</li> </li>
<li>Clang's <tt>-fcatch-undefined-behavior</tt> option has been renamed to <li>The Address Sanitizer feature and Clang's
<tt>-fsanitize=undefined</tt> and has grown the ability to check for several <tt>-fcatch-undefined-behavior</tt> option have been moved to a unified flag
new types of undefined behavior. See the Users Manual for more information. 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
<li><tt>-Wdocumentation</tt> enables warnings about documentation comments. <tt>-fcatch-undefined-behavior</tt> is now <tt>-fsanitize=undefined</tt>.
See section "Documentation comment support" for an example.</li> With this release the set of checks available continues to grow, see the Clang
documentaion and specific sanitizer notes below for details.
<!-- Flesh this out prior to release. -->
<!-- Document renaming of -faddress-sanitizer and -fthread-sanitizer. -->
</li> </li>
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment