summaryrefslogtreecommitdiffstats
path: root/lib/Target/X86/X86ELFWriterInfo.cpp
blob: 260474160cd65bb7891ad5781d1e8cf24dbc5092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//===-- X86ELFWriterInfo.cpp - ELF Writer Info for the X86 backend --------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements ELF writer information for the X86 backend.
//
//===----------------------------------------------------------------------===//

#include "X86ELFWriterInfo.h"
using namespace llvm;

X86ELFWriterInfo::X86ELFWriterInfo(bool is64Bit) :
  TargetELFWriterInfo(is64Bit ? EM_X86_64 : EM_386) {}
X86ELFWriterInfo::~X86ELFWriterInfo() {}
OpenPOWER on IntegriCloud