summaryrefslogtreecommitdiff
path: root/lib/Target/ARM/ARMELFSectLinker.h
blob: ab626b98f2a333f8623705a1e912275109333619 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//===- ARMELFSectLinker.h -------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef ARM_ELF_SECTION_LINKER_H
#define ARM_ELF_SECTION_LINKER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/CodeGen/SectLinker.h>

namespace mcld
{

/** \class ARMELFSectLinker
 *  \brief ARMELFSectLinker sets up the environment for linking.
 *
 *  \see
 */
class ARMELFSectLinker : public SectLinker
{
public:
  ARMELFSectLinker(SectLinkerOption &pOption,
                   mcld::TargetLDBackend &pLDBackend);

  ~ARMELFSectLinker();
};

} // namespace of mcld

#endif