diff options
Diffstat (limited to 'test/CodeGen/PowerPC/atomic-2.ll')
-rw-r--r-- | test/CodeGen/PowerPC/atomic-2.ll | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/test/CodeGen/PowerPC/atomic-2.ll b/test/CodeGen/PowerPC/atomic-2.ll index dce2970..a427379 100644 --- a/test/CodeGen/PowerPC/atomic-2.ll +++ b/test/CodeGen/PowerPC/atomic-2.ll @@ -3,7 +3,7 @@ define i64 @exchange_and_add(i64* %mem, i64 %val) nounwind { ; CHECK: exchange_and_add: ; CHECK: ldarx - %tmp = call i64 @llvm.atomic.load.add.i64.p0i64(i64* %mem, i64 %val) + %tmp = atomicrmw add i64* %mem, i64 %val monotonic ; CHECK: stdcx. ret i64 %tmp } @@ -11,7 +11,7 @@ define i64 @exchange_and_add(i64* %mem, i64 %val) nounwind { define i64 @exchange_and_cmp(i64* %mem) nounwind { ; CHECK: exchange_and_cmp: ; CHECK: ldarx - %tmp = call i64 @llvm.atomic.cmp.swap.i64.p0i64(i64* %mem, i64 0, i64 1) + %tmp = cmpxchg i64* %mem, i64 0, i64 1 monotonic ; CHECK: stdcx. ; CHECK: stdcx. ret i64 %tmp @@ -20,13 +20,7 @@ define i64 @exchange_and_cmp(i64* %mem) nounwind { define i64 @exchange(i64* %mem, i64 %val) nounwind { ; CHECK: exchange: ; CHECK: ldarx - %tmp = call i64 @llvm.atomic.swap.i64.p0i64(i64* %mem, i64 1) + %tmp = atomicrmw xchg i64* %mem, i64 1 monotonic ; CHECK: stdcx. ret i64 %tmp } - -declare i64 @llvm.atomic.load.add.i64.p0i64(i64* nocapture, i64) nounwind - -declare i64 @llvm.atomic.cmp.swap.i64.p0i64(i64* nocapture, i64, i64) nounwind - -declare i64 @llvm.atomic.swap.i64.p0i64(i64* nocapture, i64) nounwind |