forked from OSchip/llvm-project
JIT imm12 encoding for constant pool entry references.
llvm-svn: 117483
This commit is contained in:
parent
c7334a146e
commit
f4ea7084c5
|
@ -181,6 +181,10 @@ namespace {
|
|||
// {11-0} = imm12
|
||||
const MachineOperand &MO = MI.getOperand(Op);
|
||||
const MachineOperand &MO1 = MI.getOperand(Op + 1);
|
||||
if (!MO.isReg()) {
|
||||
emitConstPoolAddress(MO.getIndex(), ARM::reloc_arm_cp_entry);
|
||||
return 0;
|
||||
}
|
||||
unsigned Reg = getARMRegisterNumbering(MO.getReg());
|
||||
int32_t Imm12 = MO1.getImm();
|
||||
uint32_t Binary;
|
||||
|
|
Loading…
Reference in New Issue