blob: 66e6fe3553d667a497d148873247c959963dd89b (
plain)
1
2
3
4
5
6
7
|
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
define void @f(ptr %a, i32 %b, i32 %c) {
; CHECK: invalid cmpxchg failure ordering
%x = cmpxchg ptr %a, i32 %b, i32 %c acq_rel release
ret void
}
|