From: Chandler Carruth Date: Mon, 17 Dec 2012 06:24:36 +0000 (+0000) Subject: Clean up a small (messy) section of Clang's release notes for 3.2. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2df16588ba95f76082b7dc5bb04a574ae009a1fb;p=clang 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 --- 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<map<int, double>>); -
  • Clang's -fcatch-undefined-behavior option has been renamed to - -fsanitize=undefined and has grown the ability to check for several - new types of undefined behavior. See the Users Manual for more information. - - -
  • -Wdocumentation enables warnings about documentation comments. - See section "Documentation comment support" for an example.
  • - - - - - +
  • The Address Sanitizer feature and Clang's + -fcatch-undefined-behavior option have been moved to a unified flag + set: -fsanitize. This flag can be used to enable the different + dynamic checking tools when building. For example, + -faddress-sanitizer is now -fsanitize=address, and + -fcatch-undefined-behavior is now -fsanitize=undefined. + With this release the set of checks available continues to grow, see the Clang + documentaion and specific sanitizer notes below for details.