blob: 260474160cd65bb7891ad5781d1e8cf24dbc5092 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86ELFWriterInfo.cpp - ELF Writer Info for the X86 backend --------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements ELF writer information for the X86 backend.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86ELFWriterInfo.h"
15using namespace llvm;
16
Bruno Cardoso Lopes3771c002009-06-06 04:29:16 +000017X86ELFWriterInfo::X86ELFWriterInfo(bool is64Bit) :
18 TargetELFWriterInfo(is64Bit ? EM_X86_64 : EM_386) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +000019X86ELFWriterInfo::~X86ELFWriterInfo() {}