ARM: implement support for the UDF mnemonic
[oota-llvm.git] / test / MC / ARM / udf-arm-diagnostics.s
1 @ RUN: not llvm-mc -triple arm-eabi %s 2>&1 | FileCheck %s
2
3         .syntax unified
4         .text
5         .arm
6
7 undefined:
8         udfpl
9
10 @ CHECK: error: instruction 'udf' is not predicable, but condition code specified
11 @ CHECK:        udfpl
12 @ CHECK:        ^
13
14         udf #65536
15
16 @ CHECK: error: invalid operand for instruction
17 @ CHECK:        udf #65536
18 @ CHECK:            ^
19