• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===- X86.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_X86_H
10 #define MCLD_X86_H
11 #include <string>
12 #include "mcld/Target/TargetMachine.h"
13 
14 namespace mcld {
15 class TargetLDBackend;
16 
17 extern mcld::Target TheX86_32Target;
18 extern mcld::Target TheX86_64Target;
19 
20 TargetLDBackend *createX86LDBackend(const llvm::Target&, const std::string&);
21 
22 } // namespace of mcld
23 
24 #endif
25 
26