diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-26 00:55:23 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-26 00:55:23 +0000 |
commit | 2c25d9c0c56fc61be3cbd3cdd5aa0df804329b13 (patch) | |
tree | b872c07a3036f0c1d7e2b391d5ab9a984e8fdec7 | |
parent | 0db256834dfbd9b1c9132e9fb34bb75e9bb2d27d (diff) | |
download | bcm5719-llvm-2c25d9c0c56fc61be3cbd3cdd5aa0df804329b13.tar.gz bcm5719-llvm-2c25d9c0c56fc61be3cbd3cdd5aa0df804329b13.zip |
Add a note about the removal of the atomic intrinsics to the "Major Changes" section of the release notes.
llvm-svn: 142998
-rw-r--r-- | llvm/docs/ReleaseNotes.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index ed5f6b04efb..f79ca92eebf 100644 --- a/llvm/docs/ReleaseNotes.html +++ b/llvm/docs/ReleaseNotes.html @@ -758,6 +758,9 @@ it run faster:</p> "<code>load volatile</code>"/"<code>store volatile</code>". The old syntax ("<code>volatile load</code>"/"<code>volatile store</code>") is still accepted, but is now considered deprecated.</li> + <li>The old atomic intrinscs (<code>llvm.memory.barrier</code> and + <code>llvm.atomic.*</code>) are now gone. Please use the new atomic + instructions, described in the <a href="Atomics.html">atomics guide</a>. </ul> <h4>Windows (32-bit)</h4> |