summaryrefslogtreecommitdiff
path: root/lib/Target/AArch64/AArch64ELFMCLinker.cpp
blob: a311435c8657d1d7881629b4594511bc16e10254 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//===- AArch64ELFMCLinker.cpp ---------------------------------------------===//
//
//                     The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "AArch64ELFMCLinker.h"

#include <mcld/LinkerConfig.h>
#include <mcld/Object/SectionMap.h>

using namespace mcld;

AArch64ELFMCLinker::AArch64ELFMCLinker(LinkerConfig& pConfig,
                                       mcld::Module &pModule,
                                       FileHandle& pFileHandle)
  : ELFMCLinker(pConfig, pModule, pFileHandle) {
}

AArch64ELFMCLinker::~AArch64ELFMCLinker()
{
}