2011-08-17 05:11:21 +08:00
|
|
|
@ RUN: not llvm-mc -triple=thumbv6-apple-darwin < %s 2> %t
|
|
|
|
@ RUN: FileCheck --check-prefix=CHECK-ERRORS < %t %s
|
|
|
|
|
|
|
|
@ Check for various assembly diagnostic messages on invalid input.
|
|
|
|
|
|
|
|
@ ADD instruction w/o 'S' suffix.
|
|
|
|
add r1, r2, r3
|
|
|
|
@ CHECK-ERRORS: error: invalid instruction
|
|
|
|
@ CHECK-ERRORS: add r1, r2, r3
|
|
|
|
@ CHECK-ERRORS: ^
|
2011-08-17 06:20:01 +08:00
|
|
|
|
|
|
|
@ Instructions which require v6+ for both registers to be low regs.
|
|
|
|
add r2, r3
|
|
|
|
mov r2, r3
|
|
|
|
@ CHECK-ERRORS: error: instruction variant requires Thumb2
|
|
|
|
@ CHECK-ERRORS: add r2, r3
|
|
|
|
@ CHECK-ERRORS: ^
|
|
|
|
@ CHECK-ERRORS: error: instruction variant requires ARMv6 or later
|
|
|
|
@ CHECK-ERRORS: mov r2, r3
|
|
|
|
@ CHECK-ERRORS: ^
|
2011-08-18 06:49:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
@ Out of range immediates for ASR instruction.
|
|
|
|
asrs r2, r3, #33
|
|
|
|
asrs r2, r3, #0
|
|
|
|
@ CHECK-ERRORS: error: invalid operand for instruction
|
|
|
|
@ CHECK-ERRORS: asrs r2, r3, #33
|
|
|
|
@ CHECK-ERRORS: ^
|
|
|
|
@ CHECK-ERRORS: error: invalid operand for instruction
|
|
|
|
@ CHECK-ERRORS: asrs r2, r3, #0
|
|
|
|
@ CHECK-ERRORS: ^
|
2011-08-18 07:11:13 +08:00
|
|
|
|
|
|
|
@ Out of range immediates for BKPT instruction.
|
|
|
|
bkpt #256
|
|
|
|
bkpt #-1
|
|
|
|
error: invalid operand for instruction
|
|
|
|
bkpt #256
|
|
|
|
^
|
|
|
|
error: invalid operand for instruction
|
|
|
|
bkpt #-1
|
|
|
|
^
|