Sign in
llvm
/
llvm
/
8924ea3d57d5fdfc11ce7562c3eaf0ce127ebc86
/
.
/
test
/
Assembler
/
invalid-atomicrmw-fadd-must-be-fp-type.ll
blob: 3185d9505db9a2fdd1013386d0f01e4a05a8979d [
file
] [
log
] [
blame
]
; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
; CHECK: error: atomicrmw fadd operand must be a floating point type
define
void
@f
(
i32
*
%ptr
)
{
atomicrmw
fadd
i32
*
%ptr
,
i32
2
seq_cst
ret
void
}