diff options
author | Anna Zaks <ganna@apple.com> | 2013-04-25 23:14:38 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2013-04-25 23:14:38 +0000 |
commit | b6219a9f0e317f383590bcaa6e542abf38b4d5cb (patch) | |
tree | 4778d374941965f94d2bac4278172b2c953fe250 | |
parent | f92bca3b36d4eeac3ea4fc8ef83e317e40dbb4d0 (diff) | |
download | bcm5719-llvm-b6219a9f0e317f383590bcaa6e542abf38b4d5cb.tar.gz bcm5719-llvm-b6219a9f0e317f383590bcaa6e542abf38b4d5cb.zip |
Add Static Analyzer section to the Release Notes for clang 3.3
llvm-svn: 180582
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index cf251d6b0d8..7ced21e632a 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -138,6 +138,16 @@ contains a cursor. This is API breaking change, but matches the intended original behavior. Moreover, this also fixes the issue of an invalid CXCursorSet appearing to contain any CXCursor. +Static Analyzer +-------- +We've continued the work on improving the core analysis and added several new memory management checks: + +- Support for reasoning about constructors and destructors +- New false positive suppression mechanisms that reduced the number of null pointer dereference warnings +- Major performance enhancements to speed up interprocedural analysis +- New memory error checks such as use-after-free with C++ 'delete', mismatched allocators and deallocators +- Additional checks for misuse of Apple Foundation framework collection APIs + Python Binding Changes ---------------------- |