diff options
author | Jim Grosbach <grosbach@apple.com> | 2012-01-25 19:52:01 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2012-01-25 19:52:01 +0000 |
commit | 74423e32ce7f426b624bfb0c31481bcf6a36394d (patch) | |
tree | 1ae2c4dda338f41bdf18c850a1f80f8d4f93ff8e /test/MC/ARM | |
parent | 0c8515f0969e0a4d0b5313c6ceadd5ff4dab5998 (diff) | |
download | external_llvm-74423e32ce7f426b624bfb0c31481bcf6a36394d.zip external_llvm-74423e32ce7f426b624bfb0c31481bcf6a36394d.tar.gz external_llvm-74423e32ce7f426b624bfb0c31481bcf6a36394d.tar.bz2 |
ARM assemly parsing and validation of IT instruction.
"Although a Thumb2 instruction, the IT mnemonic shall be permitted in
ARM mode, and the condition verified to match the condition code(s)
on the following instruction(s)."
PR11853
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ARM')
-rw-r--r-- | test/MC/ARM/arm-it-block.s | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/MC/ARM/arm-it-block.s b/test/MC/ARM/arm-it-block.s new file mode 100644 index 0000000..e5e5491 --- /dev/null +++ b/test/MC/ARM/arm-it-block.s @@ -0,0 +1,11 @@ +@ RUN: llvm-mc -triple=armv7-apple-darwin -show-encoding < %s | FileCheck %s + .syntax unified + .globl _func + +_func: +@ CHECK: _func: + it eq + moveq r2, r3 +@ 'it' is parsed but not encoded. +@ CHECK-NOT: it +@ CHECK: moveq r2, r3 @ encoding: [0x03,0x20,0xa0,0x01] |