2015-03-24 17:31:36 -04:00
|
|
|
//===- lib/Core/Writer.cpp ------------------------------------------------===//
|
|
|
|
|
//
|
2019-08-20 16:51:32 -04:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-03-24 17:31:36 -04:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
|
|
#include "lld/Core/Writer.h"
|
|
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
|
|
2017-01-02 14:19:15 -05:00
|
|
|
Writer::Writer() = default;
|
|
|
|
|
|
|
|
|
|
Writer::~Writer() = default;
|
|
|
|
|
|
2015-03-24 17:31:36 -04:00
|
|
|
} // end namespace lld
|