C++程序  |  30行  |  741 B

//===- 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/Target/TargetMachine.h>

namespace mcld {

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

  virtual ~X86TargetMachine();
};

} // namespace of mcld

#endif