• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===- ARMELFSectLinker.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 ARM_ELF_SECTION_LINKER_H
10 #define ARM_ELF_SECTION_LINKER_H
11 #ifdef ENABLE_UNITTEST
12 #include <gtest.h>
13 #endif
14 #include <mcld/CodeGen/SectLinker.h>
15 
16 namespace mcld
17 {
18 
19 /** \class ARMELFSectLinker
20  *  \brief ARMELFSectLinker sets up the environment for linking.
21  *
22  *  \see
23  */
24 class ARMELFSectLinker : public SectLinker
25 {
26 public:
27   ARMELFSectLinker(SectLinkerOption &pOption,
28                    mcld::TargetLDBackend &pLDBackend);
29 
30   ~ARMELFSectLinker();
31 };
32 
33 } // namespace of mcld
34 
35 #endif
36 
37