[llvm] [NVPTX] Support for memory orderings for cmpxchg (PR #126159)
Akshay Deodhar via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 18:15:52 PST 2025
================
@@ -324,8 +324,10 @@ bool AtomicExpandImpl::processAtomicInstr(Instruction *I) {
// failure path. As a result, fence insertion is directly done by
// expandAtomicCmpXchg in that case.
FenceOrdering = CASI->getMergedOrdering();
- CASI->setSuccessOrdering(AtomicOrdering::Monotonic);
- CASI->setFailureOrdering(AtomicOrdering::Monotonic);
+ auto CASOrdering = TLI->atomicOperationOrderAfterFenceSplit(CASI);
----------------
akshayrdeodhar wrote:
I'm thinking of merging this Monday next week, let me know if there are any other concerns.
https://github.com/llvm/llvm-project/pull/126159
More information about the llvm-commits
mailing list