blob: 260474160cd65bb7891ad5781d1e8cf24dbc5092 [file] [log] [blame]
Bill Wendling40d77642007-01-27 02:54:30 +00001//===-- X86ELFWriterInfo.cpp - ELF Writer Info for the X86 backend --------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bill Wendling40d77642007-01-27 02:54:30 +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 Lopescf0a5772009-06-06 04:29:16 +000017X86ELFWriterInfo::X86ELFWriterInfo(bool is64Bit) :
18 TargetELFWriterInfo(is64Bit ? EM_X86_64 : EM_386) {}
Bill Wendling0db1f0b2007-01-27 11:40:32 +000019X86ELFWriterInfo::~X86ELFWriterInfo() {}