diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-19 22:09:23 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-19 22:09:23 +0000 |
commit | c4762a9c912802ef6e81b722ccb7417f259bb49d (patch) | |
tree | 3e71efbee5c0ff564d8fd6a7b9fff97897db9047 | |
parent | 88ae2bc6d53bbf58422ff74729da18a53e155b4a (diff) |
Thumb assembly parsing and encoding for MVN.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138109 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 04823ae747..0e4c580740 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -331,3 +331,11 @@ _func: @ CHECK: muls r1, r2, r1 @ encoding: [0x51,0x43] @ CHECK: muls r3, r4, r3 @ encoding: [0x63,0x43] + + +@------------------------------------------------------------------------------ +@ MVN +@------------------------------------------------------------------------------ + mvns r6, r3 + +@ CHECK: mvns r6, r3 @ encoding: [0xde,0x43] |