[llvm-branch-commits] [cfe-branch] r229939 - A few release note updates for C and C++ frontend changes.

Richard Smith richard-llvm at metafoo.co.uk
Thu Feb 19 16:28:54 PST 2015


Author: rsmith
Date: Thu Feb 19 18:28:54 2015
New Revision: 229939

URL: http://llvm.org/viewvc/llvm-project?rev=229939&view=rev
Log:
A few release note updates for C and C++ frontend changes.

Modified:
    cfe/branches/release_36/docs/ReleaseNotes.rst

Modified: cfe/branches/release_36/docs/ReleaseNotes.rst
URL: http://llvm.org/viewvc/llvm-project/cfe/branches/release_36/docs/ReleaseNotes.rst?rev=229939&r1=229938&r2=229939&view=diff
==============================================================================
--- cfe/branches/release_36/docs/ReleaseNotes.rst (original)
+++ cfe/branches/release_36/docs/ReleaseNotes.rst Thu Feb 19 18:28:54 2015
@@ -105,16 +105,27 @@ Windows Support
 C Language Changes in Clang
 ---------------------------
 
-...
+- The default language mode for C compilations with Clang has been changed from
+  C99 with GNU extensions to C11 with GNU extensions. C11 is largely
+  backwards-compatible with C99, but if you want to restore the former behavior
+  you can do so with the `-std=gnu99` flag.
 
 C11 Feature Support
 ^^^^^^^^^^^^^^^^^^^
 
-...
+- Clang now provides an implementation of the standard C11 header `<stdatomic.h>`.
 
 C++ Language Changes in Clang
 -----------------------------
 
+- An `upcoming change to C++ <http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3922.html>_`
+  changes the semantics of certain deductions of `auto` from a braced initializer
+  list. Following the intent of the C++ committee, this change will be applied to
+  our C++11 and C++14 modes as well as our experimental C++17 mode. Clang 3.6
+  does not yet implement this change, but to provide a transition period, it
+  warns on constructs whose meaning will change. The fix in all cases is to
+  add an `=` prior to the left brace.
+
 - Clang now supports putting identical constructors and destructors in
   the C5/D5 comdat, reducing code duplication.
 





More information about the llvm-branch-commits mailing list