blob: 7e4f205986e73a704e41e5bca8a52b48fbb401c0 [file] [log] [blame]
; 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 i32* %1, i32 2, i32 3 seq_cst acquire
%3 = extractvalue { i32, i1 } %2, 0
ret i32 %3
}