[cfe-commits] r170309 - /cfe/trunk/docs/ReleaseNotes.html
Chandler Carruth
chandlerc at gmail.com
Sun Dec 16 22:24:37 PST 2012
Author: chandlerc
Date: Mon Dec 17 00:24:36 2012
New Revision: 170309
URL: http://llvm.org/viewvc/llvm-project?rev=170309&view=rev
Log:
Clean up a small (messy) section of Clang's release notes for 3.2.
Modified:
cfe/trunk/docs/ReleaseNotes.html
Modified: cfe/trunk/docs/ReleaseNotes.html
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/docs/ReleaseNotes.html?rev=170309&r1=170308&r2=170309&view=diff
==============================================================================
--- cfe/trunk/docs/ReleaseNotes.html (original)
+++ cfe/trunk/docs/ReleaseNotes.html Mon Dec 17 00:24:36 2012
@@ -170,18 +170,14 @@
</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>
More information about the cfe-commits
mailing list