1 //===-- MCELFObjectTargetWriter.cpp - ELF Target Writer Subclass ----------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 9 #include "llvm/MC/MCELFObjectWriter.h" 10 11 using namespace llvm; 12 13 MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_, uint8_t OSABI_, 14 uint16_t EMachine_, 15 bool HasRelocationAddend_) 16 : OSABI(OSABI_), EMachine(EMachine_), 17 HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_) {} 18 19 bool MCELFObjectTargetWriter::needsRelocateWithSymbol(const MCSymbol &Sym, 20 unsigned Type) const { 21 return false; 22 } 23 24 void 25 MCELFObjectTargetWriter::sortRelocs(const MCAssembler &Asm, 26 std::vector<ELFRelocationEntry> &Relocs) { 27 } 28 29 void MCELFObjectTargetWriter::addTargetSectionFlags(MCContext &Ctx, 30 MCSectionELF &Sec) {} 31