ARM.h revision 5f7f811840be89f5b7f0b5997054e6282a4a4196
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