summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSylvestre Ledru <sylvestre@debian.org>2014-06-14 09:28:27 +0000
committerSylvestre Ledru <sylvestre@debian.org>2014-06-14 09:28:27 +0000
commit27557e70d37026da65f0b78a20552f0d79858181 (patch)
tree823a3df6c9573dc898d7098b989229b32648a7d3 /docs
parente6f5c37aab685089c2f71809590ab5bd40e3bc02 (diff)
downloadclang-27557e70d37026da65f0b78a20552f0d79858181.tar.gz
clang-27557e70d37026da65f0b78a20552f0d79858181.tar.bz2
clang-27557e70d37026da65f0b78a20552f0d79858181.tar.xz
One of our buildbot for FreeBSD does not support std::to_string.
Use stringstream instead to convert int to string git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@210972 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ReleaseNotes.rst18
1 files changed, 14 insertions, 4 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 94c36930a7..1311e19639 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -51,10 +51,10 @@ Major New Features
GCC 4.7 changed the mingw ABI. Clang 3.4 and older use the GCC 4.6
ABI. Clang 3.5 and newer use the GCC 4.7 abi.
-- The __has_attribute feature test is now target-aware. Older versions of Clang
- would return true when the attribute spelling was known, regardless of whether
- the attribute was available to the specific target. Clang now returns true only
- when the attribute pertains to the current compilation target.
+- The __has_attribute feature test is now target-aware. Older versions of Clang
+ would return true when the attribute spelling was known, regardless of whether
+ the attribute was available to the specific target. Clang now returns true
+ only when the attribute pertains to the current compilation target.
Improvements to Clang's diagnostics
@@ -144,6 +144,16 @@ libclang
Static Analyzer
---------------
+The `-analyzer-config` options are now passed from scan-build through to
+ccc-analyzer and then to Clang.
+
+With the option `-analyzer-config stable-report-filename=true`,
+instead of `report-XXXXXX.html`, scan-build/clang analyzer generate
+`report-<filename>-<function, method name>-<function position>-<id>.html`.
+(id = i++ for several issues found in the same function/method).
+
+List the function/method name in the index page of scan-build.
+
...
Core Analysis Improvements