Thumb2 assembly parsing and encoding for STRT.

llvm-svn: 139963
This commit is contained in:
Jim Grosbach 2011-09-16 22:27:12 +00:00
parent 0876856aa0
commit 45715a7b9d
1 changed files with 14 additions and 0 deletions

View File

@ -2376,6 +2376,20 @@ _func:
@ CHECK: strht r1, [r8, #255] @ encoding: [0x28,0xf8,0xff,0x1e] @ CHECK: strht r1, [r8, #255] @ encoding: [0x28,0xf8,0xff,0x1e]
@------------------------------------------------------------------------------
@ STRT
@------------------------------------------------------------------------------
strt r1, [r2]
strt r1, [r8, #0]
strt r1, [r8, #3]
strt r1, [r8, #255]
@ CHECK: strt r1, [r2] @ encoding: [0x42,0xf8,0x00,0x1e]
@ CHECK: strt r1, [r8] @ encoding: [0x48,0xf8,0x00,0x1e]
@ CHECK: strt r1, [r8, #3] @ encoding: [0x48,0xf8,0x03,0x1e]
@ CHECK: strt r1, [r8, #255] @ encoding: [0x48,0xf8,0xff,0x1e]
@------------------------------------------------------------------------------ @------------------------------------------------------------------------------
@ SUB (register) @ SUB (register)
@------------------------------------------------------------------------------ @------------------------------------------------------------------------------