Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / Assembler / invalid-atomicrmw-fsub-must-be-fp-type.ll
blobf02cdde4b8ca0c0b00fe0e96b044632c028b7768
1 ; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
3 ; CHECK: error: atomicrmw fsub operand must be a floating point type
4 define void @f(ptr %ptr) {
5   atomicrmw fsub ptr %ptr, i32 2 seq_cst
6   ret void