From 2c25d9c0c56fc61be3cbd3cdd5aa0df804329b13 Mon Sep 17 00:00:00 2001 From: Eli Friedman <eli.friedman@gmail.com> Date: Wed, 26 Oct 2011 00:55:23 +0000 Subject: [PATCH] Add a note about the removal of the atomic intrinsics to the "Major Changes" section of the release notes. llvm-svn: 142998 --- llvm/docs/ReleaseNotes.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/llvm/docs/ReleaseNotes.html b/llvm/docs/ReleaseNotes.html index ed5f6b04efb1..f79ca92eebf0 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>