Home | History | Annotate | Download | only in Mips
      1 //===- MipsTargetMachine.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 MIPS_TARGET_MACHINE_H
     10 #define MIPS_TARGET_MACHINE_H
     11 
     12 #include "Mips.h"
     13 #include <mcld/Target/TargetMachine.h>
     14 
     15 namespace mcld {
     16 
     17 class MipsBaseTargetMachine : public MCLDTargetMachine
     18 {
     19 public:
     20   MipsBaseTargetMachine(llvm::TargetMachine &pTM,
     21                         const mcld::Target &pTarget,
     22                         const std::string &pTriple);
     23 
     24   virtual ~MipsBaseTargetMachine();
     25 };
     26 
     27 } // namespace of mcld
     28 
     29 #endif
     30