mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
dacbc9891d
This converts the ARM AsmParser to use the new assembly matcher error reporting mechanism, which allows errors to be reported for multiple instruction encodings when it is ambiguous which one the user intended to use. By itself this doesn't improve many error messages, because we don't have diagnostic text for most operand types, but as we add that then this will allow more of those diagnostic strings to be used when they are relevant. Differential revision: https://reviews.llvm.org/D31530 llvm-svn: 314779
33 lines
1.3 KiB
ArmAsm
33 lines
1.3 KiB
ArmAsm
@ RUN: not llvm-mc -triple=armv7 -mcpu=cortex-a15 -mattr=-hwdiv-arm < %s 2> %t
|
|
@ RUN: FileCheck --check-prefix=ARM-A15 < %t %s
|
|
@ RUN: not llvm-mc -triple=thumbv7 -mcpu=cortex-a15 -mattr=-hwdiv < %s 2> %t
|
|
@ RUN: FileCheck --check-prefix=THUMB-A15 < %t %s
|
|
@ RUN: not llvm-mc -triple=armv7 < %s 2> %t
|
|
@ RUN: FileCheck --check-prefix=ARM < %t %s
|
|
@ RUN: not llvm-mc -triple=thumbv7 < %s 2> %t
|
|
@ RUN: FileCheck --check-prefix=THUMB < %t %s
|
|
|
|
sdiv r1, r2, r3
|
|
udiv r3, r4, r5
|
|
@ ARM-A15: note: instruction requires: divide in ARM
|
|
@ ARM-A15: note: instruction requires: thumb
|
|
@ ARM-A15: sdiv r1, r2, r3
|
|
@ ARM-A15: note: instruction requires: divide in ARM
|
|
@ ARM-A15: note: instruction requires: thumb
|
|
@ ARM-A15: udiv r3, r4, r5
|
|
@ THUMB-A15: note: instruction requires: arm-mode
|
|
@ THUMB-A15: note: instruction requires: divide in THUMB
|
|
@ THUMB-A15: sdiv r1, r2, r3
|
|
@ THUMB-A15: note: instruction requires: arm-mode
|
|
@ THUMB-A15: note: instruction requires: divide in THUMB
|
|
@ THUMB-A15: udiv r3, r4, r5
|
|
|
|
@ ARM: error: instruction requires: divide in ARM
|
|
@ ARM: sdiv r1, r2, r3
|
|
@ ARM: error: instruction requires: divide in ARM
|
|
@ ARM: udiv r3, r4, r5
|
|
@ THUMB: error: instruction requires: divide in THUMB
|
|
@ THUMB: sdiv r1, r2, r3
|
|
@ THUMB: error: instruction requires: divide in THUMB
|
|
@ THUMB: udiv r3, r4, r5
|