From: David Chisnall Date: Tue, 15 May 2012 13:18:03 +0000 (+0000) Subject: Add a note about atomic builtins to c11 section of release notes. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d66117b72e9ac0f590cea92f13151c70d9d42070;p=clang Add a note about atomic builtins to c11 section of release notes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@156820 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index acf0e6d150..1dfdfbefe9 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -112,7 +112,12 @@ modes.

All warning and language selection flags which previously accepted c1x have been updated to accept c11. The old -c1x forms have been removed. +c1x forms have been removed.

+ +

Clang 3.1 adds a family of __c11_atomic builtins corresponding + directly to the _explict versions of the C11 atomic functions. + This means that C11's <stdatomic.h> can be implemented in + a small set of trivial macros.

C++ Language Changes in Clang