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