blob: 76f46e8c9f6e340021c46cb7ed2746c8cb67fdab [file] [log] [blame]
//===- ELFMCLinker.h ------------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// ELFMCLinker is a customized linker pass for ELF platform.
// This pass set up default parameters for ELF.
//
//===----------------------------------------------------------------------===//
#ifndef MCLD_ELF_SECTION_LINKER_H
#define MCLD_ELF_SECTION_LINKER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/CodeGen/MCLinker.h>
namespace mcld {
class Module;
class Output;
class ELFMCLinker : public MCLinker
{
public:
ELFMCLinker(LinkerConfig& pConfig,
mcld::Module& pModule,
MemoryArea& pOutput);
virtual ~ELFMCLinker();
};
} // namespace of mcld
#endif