diff options
| author | Jim Grosbach <grosbach@apple.com> | 2011-09-16 22:15:51 +0000 |
|---|---|---|
| committer | Jim Grosbach <grosbach@apple.com> | 2011-09-16 22:15:51 +0000 |
| commit | c0f032a5709e7f0fd256f174b6ebf1d88722723e (patch) | |
| tree | ee8d313e675860b0277a8b055407c9a6a55ef69f | |
| parent | a46765300d855ac609cb25eda50acdeaa9fb5bb1 (diff) | |
| download | bcm5719-llvm-c0f032a5709e7f0fd256f174b6ebf1d88722723e.tar.gz bcm5719-llvm-c0f032a5709e7f0fd256f174b6ebf1d88722723e.zip | |
Thumb2 assembly parsing and encoding for STRBT.
llvm-svn: 139957
| -rw-r--r-- | llvm/test/MC/ARM/basic-thumb2-instructions.s | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/MC/ARM/basic-thumb2-instructions.s b/llvm/test/MC/ARM/basic-thumb2-instructions.s index 52c71b00518..e3c41080d16 100644 --- a/llvm/test/MC/ARM/basic-thumb2-instructions.s +++ b/llvm/test/MC/ARM/basic-thumb2-instructions.s @@ -2253,6 +2253,20 @@ _func: @------------------------------------------------------------------------------ +@ STRBT +@------------------------------------------------------------------------------ + strbt r1, [r2] + strbt r1, [r8, #0] + strbt r1, [r8, #3] + strbt r1, [r8, #255] + +@ CHECK: strbt r1, [r2] @ encoding: [0x02,0xf8,0x00,0x1e] +@ CHECK: strbt r1, [r8] @ encoding: [0x08,0xf8,0x00,0x1e] +@ CHECK: strbt r1, [r8, #3] @ encoding: [0x08,0xf8,0x03,0x1e] +@ CHECK: strbt r1, [r8, #255] @ encoding: [0x08,0xf8,0xff,0x1e] + + +@------------------------------------------------------------------------------ @ STRH(immediate) @------------------------------------------------------------------------------ strh r5, [r5, #-4] |

