diff options
author | Tim Northover <tnorthover@apple.com> | 2013-05-31 15:58:45 +0000 |
---|---|---|
committer | Tim Northover <tnorthover@apple.com> | 2013-05-31 15:58:45 +0000 |
commit | ee5e24cb3e987c74d4dce146b4f78e83fb2b56a8 (patch) | |
tree | b0d3cf2447cbd1d0a4544c4b4d26daa33ac192f1 /test/MC/ARM | |
parent | 242c9f4615feeee2fbdd1f29cd9a8e8ffd43c075 (diff) | |
download | external_llvm-ee5e24cb3e987c74d4dce146b4f78e83fb2b56a8.zip external_llvm-ee5e24cb3e987c74d4dce146b4f78e83fb2b56a8.tar.gz external_llvm-ee5e24cb3e987c74d4dce146b4f78e83fb2b56a8.tar.bz2 |
ARM: permit upper-case BE/LE on setend instruction
Patch by Amaury de la Vieuville.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183012 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/MC/ARM')
-rw-r--r-- | test/MC/ARM/basic-arm-instructions.s | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/MC/ARM/basic-arm-instructions.s b/test/MC/ARM/basic-arm-instructions.s index 5227bdd..4440ebd 100644 --- a/test/MC/ARM/basic-arm-instructions.s +++ b/test/MC/ARM/basic-arm-instructions.s @@ -1745,9 +1745,13 @@ Lforward: @ SETEND @------------------------------------------------------------------------------ setend be + setend BE setend le + setend LE @ CHECK: setend be @ encoding: [0x00,0x02,0x01,0xf1] +@ CHECK: setend be @ encoding: [0x00,0x02,0x01,0xf1] +@ CHECK: setend le @ encoding: [0x00,0x00,0x01,0xf1] @ CHECK: setend le @ encoding: [0x00,0x00,0x01,0xf1] |