mirror of
https://github.com/AxioDL/lld.git
synced 2026-03-30 11:44:17 -07:00
3c5c20aa2e
Differential revision: https://reviews.llvm.org/D26320 git-svn-id: https://llvm.org/svn/llvm-project/lld/trunk@286030 91177308-0d34-0410-b5e6-96231b3b80d8
19 lines
462 B
C++
19 lines
462 B
C++
//===- lib/Core/Writer.cpp ------------------------------------------------===//
|
|
//
|
|
// The LLVM Linker
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lld/Core/Writer.h"
|
|
|
|
namespace lld {
|
|
|
|
Writer::Writer() = default;
|
|
|
|
Writer::~Writer() = default;
|
|
|
|
} // end namespace lld
|