1 //===-- MCELFObjectTargetWriter.cpp - ELF Target Writer Subclass ----------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "llvm/MC/MCELFObjectWriter.h" 11 12 using namespace llvm; 13 14 MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_, 15 uint8_t OSABI_, 16 uint16_t EMachine_, 17 bool HasRelocationAddend_, 18 bool IsN64_) 19 : OSABI(OSABI_), EMachine(EMachine_), 20 HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_), 21 IsN64(IsN64_){ 22 } 23 24 bool MCELFObjectTargetWriter::needsRelocateWithSymbol(const MCSymbol &Sym, 25 unsigned Type) const { 26 return false; 27 } 28 29 void 30 MCELFObjectTargetWriter::sortRelocs(const MCAssembler &Asm, 31 std::vector<ELFRelocationEntry> &Relocs) { 32 } 33