mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Fix encoding of PC-relative Thumb1 LDR's when using immediate offsets instead of labels.
llvm-svn: 138835
This commit is contained in:
parent
309c4b7ef6
commit
9465c7fee0
@ -930,7 +930,10 @@ getAddrModeISOpValue(const MCInst &MI, unsigned OpIdx,
|
||||
uint32_t ARMMCCodeEmitter::
|
||||
getAddrModePCOpValue(const MCInst &MI, unsigned OpIdx,
|
||||
SmallVectorImpl<MCFixup> &Fixups) const {
|
||||
return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_cp, Fixups);
|
||||
const MCOperand MO = MI.getOperand(OpIdx);
|
||||
if (MO.isExpr())
|
||||
return ::getBranchTargetOpValue(MI, OpIdx, ARM::fixup_arm_thumb_cp, Fixups);
|
||||
return (MO.getImm() >> 2);
|
||||
}
|
||||
|
||||
/// getAddrMode5OpValue - Return encoding info for 'reg +/- imm10' operand.
|
||||
|
@ -224,10 +224,13 @@ _func:
|
||||
@ LDR (literal)
|
||||
@------------------------------------------------------------------------------
|
||||
ldr r1, _foo
|
||||
ldr r3, #604
|
||||
ldr r3, #368
|
||||
|
||||
@ CHECK: ldr r1, _foo @ encoding: [A,0x49]
|
||||
@ fixup A - offset: 0, value: _foo, kind: fixup_arm_thumb_cp
|
||||
|
||||
@ CHECK: ldr r3, #604 @ encoding: [0x97,0x4b]
|
||||
@ CHECK: ldr r3, #368 @ encoding: [0x5c,0x4b]
|
||||
|
||||
@------------------------------------------------------------------------------
|
||||
@ LDR (register)
|
||||
|
Loading…
Reference in New Issue
Block a user