From d577a0669b23734e6057139fd0c0b367dff08bb3 Mon Sep 17 00:00:00 2001 From: Eli Friedman Date: Fri, 12 Aug 2011 01:26:06 +0000 Subject: [PATCH] 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 --- docs/Atomics.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Atomics.html b/docs/Atomics.html index d5bf9fa5c0f..95040fb4c32 100644 --- a/docs/Atomics.html +++ b/docs/Atomics.html @@ -287,10 +287,10 @@ instructions has been clarified in the IR.

In general, optimizers should treat this like a nothrow call; the the possible optimizations are usually not interesting.
Notes for code generation
-
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 +
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.
-- 2.34.1