summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsELFSectLinker.h
blob: 949508de6b6d34acd5277369ec8440b8cf07b41b (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
//===- MipsELFSectLinker.h ------------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MIPS_ELFSECTLINKER_H
#define MIPS_ELFSECTLINKER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/CodeGen/SectLinker.h>

namespace mcld
{

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

  ~MipsELFSectLinker();
};

} // namespace of mcld

#endif