blob: cdffdd51d59460724b275dc31c7f7070aa38fcf5 [file] [log] [blame]
//===- MipsELFMCLinker.h --------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MIPS_ELF_SECTION_LINKER_H
#define MIPS_ELF_SECTION_LINKER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/Target/ELFMCLinker.h>
namespace mcld {
class Module;
class FileHandle;
/** \class MipsELFMCLinker
* \brief MipsELFMCLinker sets up the environment for linking.
*/
class MipsELFMCLinker : public ELFMCLinker
{
public:
MipsELFMCLinker(LinkerConfig& pConfig,
mcld::Module& pModule,
FileHandle& pFileHandle);
~MipsELFMCLinker();
};
} // namespace of mcld
#endif