summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-08-12 01:26:06 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-08-12 01:26:06 +0000
commitd577a0669b23734e6057139fd0c0b367dff08bb3 (patch)
tree43ab580994fa8e1ce2ad5bf1634901c10651562e /docs
parent32a183c84ad0cbe492119c37f1a7941ace61dd79 (diff)
downloadllvm-d577a0669b23734e6057139fd0c0b367dff08bb3.tar.gz
llvm-d577a0669b23734e6057139fd0c0b367dff08bb3.tar.bz2
llvm-d577a0669b23734e6057139fd0c0b367dff08bb3.tar.xz
Fix up this paragraph (including a nasty typo).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137408 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/Atomics.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/Atomics.html b/docs/Atomics.html
index d5bf9fa5c0..95040fb4c3 100644
--- a/docs/Atomics.html
+++ b/docs/Atomics.html
@@ -287,10 +287,10 @@ instructions has been clarified in the IR.</p>
<dd>In general, optimizers should treat this like a nothrow call; the
the possible optimizations are usually not interesting.</dd>
<dt>Notes for code generation</dt>
- <dd>Similarly to Acquire, a fence after the relevant operation is usually
- sufficient; see the section on Acquire. Note that a store-store fence
- is not sufficient to implement Release semantics; store-store fences
- are generally not exposed to IR because they are extremely difficult to
+ <dd>See the section on Acquire; a fence before the relevant operation is
+ usually sufficient for Release. Note that a store-store fence is not
+ sufficient to implement Release semantics; store-store fences are
+ generally not exposed to IR because they are extremely difficult to
use correctly.</dd>
</dl>