[llvm] r218319 - [docs] Fixed a typo in Atomics.rst

Jingyue Wu jingyue at google.com
Tue Sep 23 10:35:28 PDT 2014


Author: jingyue
Date: Tue Sep 23 12:35:28 2014
New Revision: 218319

URL: http://llvm.org/viewvc/llvm-project?rev=218319&view=rev
Log:
[docs] Fixed a typo in Atomics.rst

Modified:
    llvm/trunk/docs/Atomics.rst

Modified: llvm/trunk/docs/Atomics.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/Atomics.rst?rev=218319&r1=218318&r2=218319&view=diff
==============================================================================
--- llvm/trunk/docs/Atomics.rst (original)
+++ llvm/trunk/docs/Atomics.rst Tue Sep 23 12:35:28 2014
@@ -177,10 +177,10 @@ Unordered
 
 Unordered is the lowest level of atomicity. It essentially guarantees that races
 produce somewhat sane results instead of having undefined behavior.  It also
-guarantees the operation to be lock-free, so it do not depend on the data being
-part of a special atomic structure or depend on a separate per-process global
-lock.  Note that code generation will fail for unsupported atomic operations; if
-you need such an operation, use explicit locking.
+guarantees the operation to be lock-free, so it does not depend on the data
+being part of a special atomic structure or depend on a separate per-process
+global lock.  Note that code generation will fail for unsupported atomic
+operations; if you need such an operation, use explicit locking.
 
 Relevant standard
   This is intended to match the Java memory model for shared variables.





More information about the llvm-commits mailing list