diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-10-26 22:36:46 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-10-26 22:36:46 +0000 |
commit | ac372324f836de44aa21e51e63bd99d49c4c399d (patch) | |
tree | 7b004addac442970510040e06001a51ae2f16d7b | |
parent | ce7545f79d109bd357759ac9ccc3c17f3d6e4c7f (diff) |
Merging r142998:
------------------------------------------------------------------------
r142998 | efriedma | 2011-10-25 17:55:23 -0700 (Tue, 25 Oct 2011) | 3 lines
Add a note about the removal of the atomic intrinsics to the "Major Changes" section of the release notes.
------------------------------------------------------------------------
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_30@143070 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/ReleaseNotes.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.html b/docs/ReleaseNotes.html index 05f1619151..e079b6dbfe 100644 --- a/docs/ReleaseNotes.html +++ b/docs/ReleaseNotes.html @@ -730,6 +730,9 @@ Builder.CreateResume(UnwindData); "<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> |