1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

Teach the Thumb2 AsmParser to accept pre-indexed loads/stores with an offset of #-0.

llvm-svn: 140426
This commit is contained in:
Owen Anderson 2011-09-23 22:25:02 +00:00
parent ca6877343b
commit fc9a0d104c
2 changed files with 3 additions and 1 deletions

View File

@ -780,7 +780,7 @@ public:
// Immediate offset in range [-255, 255].
if (!Mem.OffsetImm) return true;
int64_t Val = Mem.OffsetImm->getValue();
return Val > -256 && Val < 256;
return (Val == INT32_MIN) || (Val > -256 && Val < 256);
}
bool isMemPosImm8Offset() const {
if (Kind != Memory || Mem.OffsetRegNum != 0)

View File

@ -2236,6 +2236,7 @@ _func:
strb lr, [r3], #255
strb r9, [r2], #4
strb r3, [sp], #-4
strb r4, [r8, #-0]!
@ CHECK: strb r5, [r5, #-4] @ encoding: [0x05,0xf8,0x04,0x5c]
@ CHECK: strb.w r5, [r6, #32] @ encoding: [0x86,0xf8,0x20,0x50]
@ -2248,6 +2249,7 @@ _func:
@ CHECK: strb lr, [r3], #255 @ encoding: [0x03,0xf8,0xff,0xeb]
@ CHECK: strb r9, [r2], #4 @ encoding: [0x02,0xf8,0x04,0x9b]
@ CHECK: strb r3, [sp], #-4 @ encoding: [0x0d,0xf8,0x04,0x39]
@ CHECK: strb r4, [r8, #-0]! @ encoding: [0x08,0xf8,0x00,0x4d]
@------------------------------------------------------------------------------