blob: 375f7b23e8a7d194aea1ef42e96ead063c9d8501 [file] [log] [blame]
//===- ARMTargetMachine.h -------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_ARM_TARGET_MACHINE_H
#define MCLD_ARM_TARGET_MACHINE_H
#include "ARM.h"
#include <mcld/CodeGen/TargetMachine.h>
namespace mcld {
class ARMBaseTargetMachine : public MCLDTargetMachine
{
public:
ARMBaseTargetMachine(llvm::TargetMachine& pTM,
const llvm::Target& pLLVMTarget,
const mcld::Target& pMCLDTarget,
const std::string& pTriple);
};
} // namespace of mcld
#endif