ARM.h revision 5460a1f25d9ddecb5c70667267d66d51af177a99
1//===- ARM.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 MCLD_ARM_H
10#define MCLD_ARM_H
11#include <string>
12#include "mcld/Target/TargetMachine.h"
13
14namespace mcld {
15class TargetLDBackend;
16
17extern mcld::Target TheARMTarget;
18
19TargetLDBackend *createARMLDBackend(const llvm::Target&, const std::string&);
20
21} // namespace of mcld
22
23#endif
24
25