diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-19 19:30:58 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-19 19:30:58 +0000 |
commit | 560ef9f2fe5f0fe0f8603ab3d076dae088efa6de (patch) | |
tree | ca286e33a2264126290954bc602c3b10eb96404f | |
parent | 1b7b68f08776dc9553399dc3b4e7ab54e5e596c0 (diff) |
Thumb assembly parsing and encoding for LSL(register).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138064 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 7ed665c241..61e322164f 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -270,3 +270,11 @@ _func: @ CHECK: lsls r4, r5, #0 @ encoding: [0x2c,0x00] @ CHECK: lsls r4, r5, #4 @ encoding: [0x2c,0x01] + + +@------------------------------------------------------------------------------ +@ LSL (register) +@------------------------------------------------------------------------------ + lsls r2, r6 + +@ CHECK: lsls r2, r6 @ encoding: [0xb2,0x40] |