forked from OSchip/llvm-project
Use the right relocation type for X86::MOV64ri64i32
llvm-svn: 75687
This commit is contained in:
parent
a9111b9f97
commit
ef130cfa95
|
@ -636,6 +636,8 @@ void Emitter<CodeEmitter>::emitInstruction(
|
|||
else {
|
||||
unsigned rt = Is64BitMode ? X86::reloc_pcrel_word
|
||||
: (IsPIC ? X86::reloc_picrel_word : X86::reloc_absolute_word);
|
||||
if (Opcode == X86::MOV64ri64i32)
|
||||
rt = X86::reloc_absolute_word; // FIXME: add X86II flag?
|
||||
// This should not occur on Darwin for relocatable objects.
|
||||
if (Opcode == X86::MOV64ri)
|
||||
rt = X86::reloc_absolute_dword; // FIXME: add X86II flag?
|
||||
|
|
Loading…
Reference in New Issue