//===- ARMELFMCLinker.cpp -------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "ARMELFMCLinker.h"
#include <mcld/LinkerConfig.h>
#include <mcld/Object/SectionMap.h>
using namespace mcld;
ARMELFMCLinker::ARMELFMCLinker(LinkerConfig& pConfig,
mcld::Module &pModule,
MemoryArea& pOutput)
: ELFMCLinker(pConfig, pModule, pOutput) {
}
ARMELFMCLinker::~ARMELFMCLinker()
{
}