blob: acfa50111d2ac34b24b64177f6d0f4b054651522 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86ELFWriterInfo.h - ELF Writer Info for X86 ------------*- C++ -*-===//
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#ifndef X86_ELF_WRITER_INFO_H
15#define X86_ELF_WRITER_INFO_H
16
17#include "llvm/Target/TargetELFWriterInfo.h"
18
19namespace llvm {
20
21 class X86ELFWriterInfo : public TargetELFWriterInfo {
22 public:
Bruno Cardoso Lopes3771c002009-06-06 04:29:16 +000023 X86ELFWriterInfo(bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024 virtual ~X86ELFWriterInfo();
25 };
26
27} // end llvm namespace
28
29#endif // X86_ELF_WRITER_INFO_H