Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / Assembler / invalid-atomicrmw-fadd-must-be-fp-type.ll
blob1088333625d9588f9a68b312bab1e692174efd3a
1 ; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
3 ; CHECK: error: atomicrmw fadd operand must be a floating point type
4 define void @f(ptr %ptr) {
5   atomicrmw fadd ptr %ptr, i32 2 seq_cst
6   ret void