summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86TargetMachine.h
blob: b9d78e13911688584d21b0f0505778f98baf76cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===- X86TargetMachine.h -------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_X86_TARGET_MACHINE_H
#define MCLD_X86_TARGET_MACHINE_H
#include "X86.h"
#include <mcld/CodeGen/TargetMachine.h>

namespace mcld {

class X86TargetMachine : public MCLDTargetMachine
{
public:
  X86TargetMachine(llvm::TargetMachine& pTM,
                   const llvm::Target& pLLVMTarget,
                   const mcld::Target& pMCLDTarget,
                   const std::string& pTriple);
};

} // namespace of mcld

#endif