HexagonTargetMachine.h revision 551ae4ebd3e9d137ea668fb83ae4a55b8cfba451
1//===- HexagonTargetMachine.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 TARGET_HEXAGON_HEXAGONTARGETMACHINE_H
10#define TARGET_HEXAGON_HEXAGONTARGETMACHINE_H
11#include "Hexagon.h"
12#include <mcld/CodeGen/TargetMachine.h>
13
14namespace mcld {
15
16class HexagonTargetMachine : public MCLDTargetMachine
17{
18public:
19  HexagonTargetMachine(llvm::TargetMachine &pTM,
20                       const llvm::Target &pLLVMTarget,
21                       const mcld::Target &pMCLDTarget,
22                       const std::string &pTriple);
23};
24
25} // namespace of mcld
26
27#endif
28