summaryrefslogtreecommitdiff
path: root/llvm/test/Bindings/llvm-c/atomics.ll
blob: ba29e5e1e17086219c69e218923e13bdb1217c3f (plain)
1
2
3
4
5
6
7
8
9
10
; RUN: llvm-as < %s | llvm-dis > %t.orig
; RUN: llvm-as < %s | llvm-c-test --echo > %t.echo
; RUN: diff -w %t.orig %t.echo

define i32 @main() {
  %1 = alloca i32, align 4
  %2 = cmpxchg ptr %1, i32 2, i32 3 seq_cst acquire
  %3 = extractvalue { i32, i1 } %2, 0
  ret i32 %3
}