blob: 949508de6b6d34acd5277369ec8440b8cf07b41b [file] [log] [blame]
//===- 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