summaryrefslogtreecommitdiff
path: root/lib/Target/Hexagon/Hexagon.h
blob: 437a839f1346612777c0f7a4db461f189d7241dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//===- Hexagon.h ----------------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef TARGET_HEXAGON_HEXAGON_H
#define TARGET_HEXAGON_HEXAGON_H
#include <string>

namespace llvm {
class Target;
} // namespace of llvm

namespace mcld {

class Target;
class TargetLDBackend;

extern mcld::Target TheHexagonTarget;

TargetLDBackend*
createHexagonLDBackend(const llvm::Target&, const std::string&);

} // namespace of mcld

#endif