diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-03-24 01:40:42 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-03-24 01:40:42 +0000 |
commit | 3d793962becf3a345cfff96202f3c6c27a1fb5d4 (patch) | |
tree | be0d866a0a409381419a3015dc35af015353f70d /test | |
parent | 571f290376ad7b84aac6e58dcecd19d9797a3892 (diff) | |
download | external_llvm-3d793962becf3a345cfff96202f3c6c27a1fb5d4.zip external_llvm-3d793962becf3a345cfff96202f3c6c27a1fb5d4.tar.gz external_llvm-3d793962becf3a345cfff96202f3c6c27a1fb5d4.tar.bz2 |
Load/Store Multiple:
These instructions were changed to not embed the addressing mode within the MC instructions
We also need to update the corresponding assert stmt. Also add two test cases.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128191 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/MC/Disassembler/ARM/arm-tests.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/MC/Disassembler/ARM/arm-tests.txt b/test/MC/Disassembler/ARM/arm-tests.txt index eace5ab..93d6a03 100644 --- a/test/MC/Disassembler/ARM/arm-tests.txt +++ b/test/MC/Disassembler/ARM/arm-tests.txt @@ -175,3 +175,9 @@ # CHECK: strtvc r5, [r3], r0, lsr #20 0x30 0x5a 0xa3 0x76 + +# CHECK: stmiblo sp, {r0, r4, r8, r11, r12, pc} +0x11 0x99 0x8d 0x39 + +# CHECK: ldmdb sp, {r0, r4, r8, r11, r12, pc} +0x11 0x99 0x1d 0xe9 |