mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
a39ea3408e
The UDF instruction is a reserved undefined instruction space. The assembler mnemonic was introduced with ARM ARM rev C.a. The instruction is not predicated and the immediate constant is ignored by the CPU. Add support for the three encodings for this instruction. The changes to the invalid instruction test is due to the fact that the invalid instructions actually overlap with the undefined instruction. Introduction of the new instruction results in a partial decode as an undefined sequence. Drop the tests as they are invalid instruction patterns anyways. llvm-svn: 208751
20 lines
298 B
ArmAsm
20 lines
298 B
ArmAsm
@ RUN: not llvm-mc -triple thumbv6m-eabi %s 2>&1 | FileCheck %s
|
|
|
|
.syntax unified
|
|
.text
|
|
.thumb
|
|
|
|
undefined:
|
|
udfpl
|
|
|
|
@ CHECK: error: conditional execution not supported in Thumb1
|
|
@ CHECK: udfpl
|
|
@ CHECK: ^
|
|
|
|
udf #256
|
|
|
|
@ CHECK: error: instruction requires: arm-mode
|
|
@ CHECK: udf #256
|
|
@ CHECK: ^
|
|
|