This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rG1e843a987d84: [MS] Add more 128bit cmpxchg intrinsics for
AArch64 (authored by rnk).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTIO
rnk marked an inline comment as done.
rnk added inline comments.
Comment at: clang/lib/CodeGen/CGBuiltin.cpp:336
+
+ // For Release ordering, the failure ordering should be Monotonic.
+ auto FailureOrdering = SuccessOrdering == AtomicOrdering::Release
thakis wr
rnk updated this revision to Diff 307678.
rnk marked an inline comment as done.
rnk added a comment.
- add tests
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D92062/new/
https://reviews.llvm.org/D92062
Files:
clang/include/clang/Basic/BuiltinsAA
thakis accepted this revision.
thakis added inline comments.
This revision is now accepted and ready to land.
Comment at: clang/lib/CodeGen/CGBuiltin.cpp:336
+
+ // For Release ordering, the failure ordering should be Monotonic.
+ auto FailureOrdering = SuccessOrdering == Atomi
rnk created this revision.
rnk added reviewers: hans, thakis, rsmith, akhuang.
Herald added subscribers: danielkiss, jfb, kristof.beyls.
Herald added a project: clang.
rnk requested review of this revision.
The MSVC STL for requires this on ARM64.
Requested in https://llvm.org/pr47099
Depends on