From: Ted Kremenek Date: Sun, 11 Oct 2009 03:10:25 +0000 (+0000) Subject: Update release notes blurb on the static analyzer. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2840c18cf559f9e3dff1c18490d1dc62153e74a0;p=oota-llvm.git Update release notes blurb on the static analyzer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83749 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes-2.6.html b/docs/ReleaseNotes-2.6.html index 31f42ed4797..8b8b7d69bb2 100644 --- a/docs/ReleaseNotes-2.6.html +++ b/docs/ReleaseNotes-2.6.html @@ -143,12 +143,20 @@ list.

-

UPDATE! Previously announced in the 2.4 and 2.5 LLVM releases, the Clang project also +

Previously announced in the 2.4 and 2.5 LLVM releases, the Clang project also includes an early stage static source code analysis tool for automatically finding bugs in C and Objective-C programs. The tool performs checks to find -bugs that occur on a specific path within a program. -The set of checks performed by the static analyzer continues to expand, and +bugs that occur on a specific path within a program.

+ +

In the LLVM 2.6 time-frame, the analyzer core has undergone several important +improvements and cleanups and now includes a new Checker interface that +is intended to eventually serve as a basis for domain-specific checks. Further, +in addition to generating HTML files for reporting analysis results, the +analyzer can now also emit bug reports in a structured XML format that is +intended to be easily readable by other programs.

+ +

The set of checks performed by the static analyzer continues to expand, and future plans for the tool include full source-level inter-procedural analysis and deeper checks such as buffer overrun detection. There are many opportunities to extend and enhance the static analyzer, and anyone interested in working on