aboutsummaryrefslogtreecommitdiff
path: root/test/Bitcode/cmpxchg.3.6.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/Bitcode/cmpxchg.3.6.ll')
-rw-r--r--test/Bitcode/cmpxchg.3.6.ll13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/Bitcode/cmpxchg.3.6.ll b/test/Bitcode/cmpxchg.3.6.ll
new file mode 100644
index 000000000000..bec51a128c33
--- /dev/null
+++ b/test/Bitcode/cmpxchg.3.6.ll
@@ -0,0 +1,13 @@
+; RUN: llvm-dis < %s.bc | FileCheck %s
+
+define void @f2(i32* %x, i32 %y.orig, i32 %z) {
+entry:
+ br label %a
+b:
+ cmpxchg i32* %x, i32 %y, i32 %z acquire acquire
+; CHECK: cmpxchg i32* %x, i32 %y, i32 %z acquire acquire
+ ret void
+a:
+ %y = add i32 %y.orig, 1
+ br label %a
+}