mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
8 lines
197 B
LLVM
8 lines
197 B
LLVM
|
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
define void @f(i32* %a, i32 %b, i32 %c) {
|
||
|
; CHECK: invalid cmpxchg failure ordering
|
||
|
%x = cmpxchg i32* %a, i32 %b, i32 %c acq_rel acq_rel
|
||
|
ret void
|
||
|
}
|