Home | History | Annotate | Download | only in X86
      1 //===- X86TargetMachine.h -------------------------------------------------===//
      2 //
      3 //                     The MCLinker Project
      4 //
      5 // This file is distributed under the University of Illinois Open Source
      6 // License. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 #ifndef MCLD_X86_TARGET_MACHINE_H
     10 #define MCLD_X86_TARGET_MACHINE_H
     11 #include "X86.h"
     12 #include <mcld/Target/TargetMachine.h>
     13 
     14 namespace mcld {
     15 
     16 class X86TargetMachine : public MCLDTargetMachine
     17 {
     18 public:
     19   X86TargetMachine(llvm::TargetMachine &pTM,
     20                    const mcld::Target &pTarget,
     21                    const std::string &pTriple);
     22 
     23   virtual ~X86TargetMachine();
     24 };
     25 
     26 } // namespace of mcld
     27 
     28 #endif
     29 
     30