diff options
Diffstat (limited to 'llvm/docs')
-rw-r--r-- | llvm/docs/Atomics.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/Atomics.rst b/llvm/docs/Atomics.rst index 112ea23b9e9..ff667480446 100644 --- a/llvm/docs/Atomics.rst +++ b/llvm/docs/Atomics.rst @@ -367,7 +367,7 @@ Predicates for optimizer writers to query: that they return true for any operation which is volatile or at least Monotonic. -* ``isAtLeastAcquire()``/``isAtLeastRelease()``: These are predicates on +* ``isStrongerThan`` / ``isAtLeastOrStrongerThan``: These are predicates on orderings. They can be useful for passes that are aware of atomics, for example to do DSE across a single atomic access, but not across a release-acquire pair (see MemoryDependencyAnalysis for an example of this) |