diff options
| author | Jingyue Wu <jingyue@google.com> | 2014-09-23 17:35:28 +0000 |
|---|---|---|
| committer | Jingyue Wu <jingyue@google.com> | 2014-09-23 17:35:28 +0000 |
| commit | c4725da382b2421926dfe0228845758671c6935b (patch) | |
| tree | 24a231862ed60fcdf9540d09af7c16ec043d58f8 /llvm/docs/Atomics.rst | |
| parent | 051742431aaea59b5a8c1676217f7469145c3a92 (diff) | |
| download | bcm5719-llvm-c4725da382b2421926dfe0228845758671c6935b.tar.gz bcm5719-llvm-c4725da382b2421926dfe0228845758671c6935b.zip | |
[docs] Fixed a typo in Atomics.rst
llvm-svn: 218319
Diffstat (limited to 'llvm/docs/Atomics.rst')
| -rw-r--r-- | llvm/docs/Atomics.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/docs/Atomics.rst b/llvm/docs/Atomics.rst index 05234ef7c24..58d1a26d544 100644 --- a/llvm/docs/Atomics.rst +++ b/llvm/docs/Atomics.rst @@ -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. |

