diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-23 19:59:32 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-23 19:59:32 +0000 |
commit | 3284db5bfbd313da3492bcae36cbe7305071c05c (patch) | |
tree | 25bf461fdec31c8014f79a66d3874d6baf2b307a | |
parent | 010bebc696156eb4fe346c0d3566fb855ddfc937 (diff) |
Thumb parsing and encoding for UXTB and UXTH.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138363 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/MC/ARM/basic-thumb-instructions.s | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/MC/ARM/basic-thumb-instructions.s b/test/MC/ARM/basic-thumb-instructions.s index f65c7cc35e..489fcd4e6d 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -561,3 +561,13 @@ _func: tst r6, r1 @ CHECK: tst r6, r1 @ encoding: [0x0e,0x42] + + +@------------------------------------------------------------------------------ +@ UXTB/UXTH +@------------------------------------------------------------------------------ + uxtb r7, r2 + uxth r1, r4 + +@ CHECK: uxtb r7, r2 @ encoding: [0xd7,0xb2] +@ CHECK: uxth r1, r4 @ encoding: [0xa1,0xb2] |