diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-09-06 20:12:23 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-09-06 20:12:23 +0000 |
commit | 79d56a66c3d763b3a8147581c75c184cd48abcdc (patch) | |
tree | 8a87f52998e66912ec9a6a3c661d1f2ee03e7aad | |
parent | 5c984df26b0391fec853f76722df7b2bb2c9ee4c (diff) |
Thumb2 parsing and encoding for CDP/CDP2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139168 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/MC/ARM/basic-thumb2-instructions.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/MC/ARM/basic-thumb2-instructions.s b/test/MC/ARM/basic-thumb2-instructions.s index ee5d74735f..1d4ba2cf51 100644 --- a/test/MC/ARM/basic-thumb2-instructions.s +++ b/test/MC/ARM/basic-thumb2-instructions.s @@ -283,6 +283,16 @@ _func: @------------------------------------------------------------------------------ +@ CDP/CDP2 +@------------------------------------------------------------------------------ + cdp p7, #1, c1, c1, c1, #4 + cdp2 p7, #1, c1, c1, c1, #4 + +@ CHECK: cdp p7, #1, c1, c1, c1, #4 @ encoding: [0x11,0xee,0x81,0x17] +@ CHECK: cdp2 p7, #1, c1, c1, c1, #4 @ encoding: [0x11,0xfe,0x81,0x17] + + +@------------------------------------------------------------------------------ @ IT @------------------------------------------------------------------------------ @ Test encodings of a few full IT blocks, not just the IT instruction |