23 lines
729 B
C++
23 lines
729 B
C++
//===- lib/ReaderWriter/ELF/X86_64/ExampleTarget/ExampleTargetHandler.cpp -===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "ExampleTargetHandler.h"
|
|
#include "X86_64ExecutableWriter.h"
|
|
#include "ExampleLinkingContext.h"
|
|
|
|
using namespace lld;
|
|
using namespace elf;
|
|
|
|
ExampleTargetHandler::ExampleTargetHandler(ExampleLinkingContext &c)
|
|
: X86_64TargetHandler(c), _ctx(c) {}
|
|
|
|
std::unique_ptr<Writer> ExampleTargetHandler::getWriter() {
|
|
return llvm::make_unique<X86_64ExecutableWriter>(_ctx, *_targetLayout);
|
|
}
|