• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
MCELFObjectTargetWriter(bool Is64Bit_,Triple::OSType OSType_,uint16_t EMachine_,bool HasRelocationAddend_)14 MCELFObjectTargetWriter::MCELFObjectTargetWriter(bool Is64Bit_,
15                                                  Triple::OSType OSType_,
16                                                  uint16_t EMachine_,
17                                                  bool HasRelocationAddend_)
18   : OSType(OSType_), EMachine(EMachine_),
19     HasRelocationAddend(HasRelocationAddend_), Is64Bit(Is64Bit_) {
20 }
21 
~MCELFObjectTargetWriter()22 MCELFObjectTargetWriter::~MCELFObjectTargetWriter() {
23 }
24