Convert more tests over to the new atomic instructions.  

I did not convert Atomics-32.ll and Atomics-64.ll by hand; the diff is autoupgrade output.

The wmb test is gone because there isn't any way to express wmb with the new atomic instructions; if someone really needs a non-asm way to write a wmb on Alpha, a platform-specific intrisic could be added.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140566 91177308-0d34-0410-b5e6-96231b3b80d8
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_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(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