blob: 6cfae73d901f4bec0f521a4d5fc0ae5e620d78c2 [file] [log] [blame]
//===- MipsTargetMachine.h ------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MIPS_TARGET_MACHINE_H
#define MIPS_TARGET_MACHINE_H
#include "Mips.h"
#include <mcld/Target/TargetMachine.h>
namespace mcld {
class MipsBaseTargetMachine : public MCLDTargetMachine
{
public:
MipsBaseTargetMachine(llvm::TargetMachine &pTM,
const mcld::Target &pTarget,
const std::string &pTriple);
virtual ~MipsBaseTargetMachine();
};
} // namespace of mcld
#endif