diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:00:19 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:00:19 +0000 |
commit | d937d951256372a24eb6ac9f048816b0873ed528 (patch) | |
tree | fe972684c56d8440134f32691a750bff662cb778 | |
parent | 3c1fece071b9152cfbab22b356439d27c46e9200 (diff) |
Thumb assembly parsing and encoding for POP.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138286 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 a3bb317536..06a9dfed3d 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -363,3 +363,11 @@ _func: orrs r3, r4 @ CHECK-ERRORS: orrs r3, r4 @ encoding: [0x23,0x43] + + +@------------------------------------------------------------------------------ +@ POP +@------------------------------------------------------------------------------ + pop {r2, r3, r6} + +@ CHECK: pop {r2, r3, r6} @ encoding: [0x4c,0xbc] |