[llvm-commits] [llvm] r139481 - /llvm/trunk/docs/Atomics.html

Nick Lewycky nicholas at mxc.ca
Sun Sep 11 08:50:05 PDT 2011


Author: nicholas
Date: Sun Sep 11 10:50:05 2011
New Revision: 139481

URL: http://llvm.org/viewvc/llvm-project?rev=139481&view=rev
Log:
s/SequeuentiallyConsistent/SequentiallyConsistent/g

Modified:
    llvm/trunk/docs/Atomics.html

Modified: llvm/trunk/docs/Atomics.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Atomics.html?rev=139481&r1=139480&r2=139481&view=diff
==============================================================================
--- llvm/trunk/docs/Atomics.html (original)
+++ llvm/trunk/docs/Atomics.html Sun Sep 11 10:50:05 2011
@@ -437,10 +437,10 @@
       SequentiallyConsistent operations may not be reordered.</dd>
   <dt>Notes for code generation</dt>
   <dd>SequentiallyConsistent loads minimally require the same barriers
-     as Acquire operations and SequeuentiallyConsistent stores require
+     as Acquire operations and SequentiallyConsistent stores require
      Release barriers. Additionally, the code generator must enforce
-     ordering between SequeuentiallyConsistent stores followed by
-     SequeuentiallyConsistent loads. This is usually done by emitting
+     ordering between SequentiallyConsistent stores followed by
+     SequentiallyConsistent loads. This is usually done by emitting
      either a full fence before the loads or a full fence after the
      stores; which is preferred varies by architecture.</dd>
 </dl>





More information about the llvm-commits mailing list