From: Jim Grosbach Date: Mon, 22 Aug 2011 23:58:02 +0000 (+0000) Subject: Thumb parsing and encoding for SETEND. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=7e99b5c8a36e3e8d611e47122f9c596b58ccf3e8;p=oota-llvm.git Thumb parsing and encoding for SETEND. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138312 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/MC/ARM/basic-thumb-instructions.s b/test/MC/ARM/basic-thumb-instructions.s index 197094df490..020bc935d17 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]