diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-18 17:55:03 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-18 17:55:03 +0000 |
commit | 7750b8df6aaf9182b8205b98c335bf0f0b19e1b6 (patch) | |
tree | 1a395eaea8c4a55279237078f2bcc97fe2060164 | |
parent | 11cca7a2ea1ea4d19433bf356b55845637561a39 (diff) |
Thumb assembly parsing and encoding test for CMN.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137957 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 eb3a2b75d3..1448538d6b 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -134,3 +134,13 @@ _func: bx r2 @ CHECK: bx r2 @ encoding: [0x10,0x47] + + +@------------------------------------------------------------------------------ +@ CMN +@------------------------------------------------------------------------------ + + cmn r5, r1 + +@ CHECK: cmn r5, r1 @ encoding: [0xcd,0x42] + |