diff options
author | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:58:02 +0000 |
---|---|---|
committer | Jim Grosbach <grosbach@apple.com> | 2011-08-22 23:58:02 +0000 |
commit | 7e99b5c8a36e3e8d611e47122f9c596b58ccf3e8 (patch) | |
tree | e42ec37ca020c4dc498504fdd49d96adbb70202a /test | |
parent | 04d55f1905748b0d66655e2332e1a232a3f665f4 (diff) | |
download | external_llvm-7e99b5c8a36e3e8d611e47122f9c596b58ccf3e8.zip external_llvm-7e99b5c8a36e3e8d611e47122f9c596b58ccf3e8.tar.gz external_llvm-7e99b5c8a36e3e8d611e47122f9c596b58ccf3e8.tar.bz2 |
Thumb parsing and encoding for SETEND.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-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 197094d..020bc93 100644 --- a/test/MC/ARM/basic-thumb-instructions.s +++ b/test/MC/ARM/basic-thumb-instructions.s @@ -415,3 +415,13 @@ _func: sbcs r4, r3 @ CHECK: sbcs r4, r3 @ encoding: [0x9c,0x41] + + +@------------------------------------------------------------------------------ +@ SETEND +@------------------------------------------------------------------------------ + setend be + setend le + +@ CHECK: setend be @ encoding: [0x58,0xb6] +@ CHECK: setend le @ encoding: [0x50,0xb6] |