brintos

brintos / llvm-project-archived public Read only

0
0
Text · 209 B · 1088333 Raw
8 lines · plain
1; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s2 3; CHECK: error: atomicrmw fadd operand must be a floating point type4define void @f(ptr %ptr) {5  atomicrmw fadd ptr %ptr, i32 2 seq_cst6  ret void7}8