1 //===-- MCELFObjectTargetWriter.cpp - ELF Target Writer Subclass ----------===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 #include "llvm/ADT/STLExtras.h"
11 #include "llvm/MC/MCELFObjectWriter.h"
12 #include "llvm/MC/MCExpr.h"
13 #include "llvm/MC/MCValue.h"
17 MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_,
20 bool HasRelocationAddend_,
22 : OSABI(OSABI_), EMachine(EMachine_),
23 HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_),
27 bool MCELFObjectTargetWriter::needsRelocateWithSymbol(const MCSymbolData &SD,
28 unsigned Type) const {