blob: 847c0a1c30cc92ef0d3997faede2548d68990a94 [file] [log] [blame]
; 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 unordered
ret void
}