diff options
-rw-r--r-- | lib/CodeGen/MachOWriter.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/CodeGen/MachOWriter.cpp b/lib/CodeGen/MachOWriter.cpp index bd7c536496..d5958525a9 100644 --- a/lib/CodeGen/MachOWriter.cpp +++ b/lib/CodeGen/MachOWriter.cpp @@ -726,8 +726,13 @@ void MachOWriter::CalculateRelocations(MachOSection &MOS) { TargetSection = MOSPtr->Index; MR.setResultPointer((void*)Offset); } - - GetTargetRelocation(MR, MOS, *SectionList[TargetSection-1], Scattered); + + OutputBuffer RelocOut(MOS.RelocBuffer, is64Bit, isLittleEndian); + OutputBuffer SecOut(MOS.SectionData, is64Bit, isLittleEndian); + MachOSection &To = *SectionList[TargetSection - 1]; + + MOS.nreloc += GetTargetRelocation(MR, MOS.Index, To.addr, To.Index, + RelocOut, SecOut, Scattered); } } |