[ARM] Cortex-M4 schedule additions
[llvm-complete.git] / test / Assembler / invalid-atomicrmw-xchg-must-be-integer-or-fp-type.ll
blobd0a794bd0244a028a66ce14eba2aa067b882c872
1 ; RUN: not llvm-as -disable-output %s 2>&1 | FileCheck %s
3 ; CHECK: error: atomicrmw xchg operand must be an integer or floating point type
4 define void @f(i32** %ptr) {
5   atomicrmw xchg i32** %ptr, i32* null seq_cst
6   ret void