1//===- AArch64.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_AARCH64_AARCH64_H_
10#define TARGET_AARCH64_AARCH64_H_
11#include <string>
12
13namespace llvm {
14class Target;
15}  // namespace llvm
16
17namespace mcld {
18
19class Target;
20class TargetLDBackend;
21
22extern mcld::Target TheAArch64Target;
23
24TargetLDBackend* createAArch64LDBackend(const llvm::Target&,
25                                        const std::string&);
26
27}  // namespace mcld
28
29#endif  // TARGET_AARCH64_AARCH64_H_
30