diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:40:51 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:40:51 +0000 |
commit | 3f57a9a2cf375fe54c274e1e52e2b743d452ffac (patch) | |
tree | 73bfb3993e91b5b30fab68a6fe6f039a6c2d35d0 | |
parent | ab585e61464f4b1bcbc01d61d08a7d87c227997d (diff) |
Thumb parsing and encoding for ROR.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138304 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/MC/ARM/basic-thumb-instructions.s | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/MC/ARM/basic-thumb-instructions.s b/test/MC/ARM/basic-thumb-instructions.s index 62db8b9a51..2fc050b1d3 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -391,3 +391,11 @@ _func: @ CHECK: rev r6, r3 @ encoding: [0x1e,0xba] @ CHECK: rev16 r7, r2 @ encoding: [0x57,0xba] @ CHECK: revsh r5, r1 @ encoding: [0xcd,0xba] + + +@------------------------------------------------------------------------------ +@ ROR +@------------------------------------------------------------------------------ + rors r2, r7 + +@ CHECK: rors r2, r7 @ encoding: [0xfa,0x41] |