From: Chandler Carruth
Date: Mon, 28 Nov 2011 09:43:30 +0000 (+0000)
Subject: Notes through another month... a *really* busy month, but mostly bug
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1af4022b6d0c43a447e0f06726b137803b9445fe;p=clang
Notes through another month... a *really* busy month, but mostly bug
fixing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145237 91177308-0d34-0410-b5e6-96231b3b80d8
---
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html
index 4a76ba253f..e1d090505e 100644
--- a/docs/ReleaseNotes.html
+++ b/docs/ReleaseNotes.html
@@ -91,7 +91,9 @@ prose in a section of its own. When doing that, delete the notes.
section?
Building Clang on windows -- mingw, 32 and 64 bit, native windows builds,
cygwin. get chapuni to flesh out details.
- Compiling C/C++ w/ MinGW (32/64) and Cygwin on Windows -- chapuny
+ Compiling C/C++ w/ MinGW (32/64) and Cygwin on Windows -- chapuni
+ C++ -- Parsing and AST support for Windows Structured Exception
+ Handling.
C++11 -- noexcept (Sebastian Redl)
Uninitialized values Clang warning rewrite -- more accurate, faster, able
to differentiate between the possibility of an uninitialized use and the
@@ -102,7 +104,8 @@ prose in a section of its own. When doing that, delete the notes.
Support for language specific address spaces
- Support for compiling on NetBSD systems -- Joerg Sonnenberger to fill out
+ Support for compiling on NetBSD systems -- Joerg Sonnenberger to fill
+ out
Support for '--sysroot' based cross-compilation
Crash recovery handling for libclang clients -- Ted
Driver support for automatic preparation of reproduction steps for
@@ -113,10 +116,23 @@ prose in a section of its own. When doing that, delete the notes.
Diagnostic improvements bucket?
- Emitting fewer include stacks
+ - Significantly better recovery when encountering misspelled type names
+ in a declaration context. r130082
C++ -- supported in the static analyzer: methods, new, constructors,
destructors, etc.
+ Improved AST support for partially constructed nodes and incomplete
+ information for LLDB and other clients which dynamically build AST nodes.
+ Largely complete MSVC-compatible parsing mode -- fpichet
+ C1X -- static asserts and generic selections
+ C++11 -- alias declarations -- zygoloid
+ C++11 -- range-based-for loops -- zygoloid
+ C++11 -- delegating ctors -- zygoloid/scshunt
+ Memory reduction -- initializers, macro expansions, source locations,
+ etc.
+ Full set of type traits, sufficient to support C++11 standard libraries;
+ also expression traits.