2015-01-21 22:54:56 +00:00
|
|
|
//===- lib/Core/Writer.cpp ------------------------------------------------===//
|
2012-04-07 01:31:00 +00:00
|
|
|
//
|
2019-01-19 08:50:56 +00: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
|
2012-04-07 01:31:00 +00:00
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2015-01-21 22:54:56 +00:00
|
|
|
#include "lld/Core/Writer.h"
|
2012-05-31 22:34:00 +00:00
|
|
|
|
2012-04-07 01:31:00 +00:00
|
|
|
namespace lld {
|
2012-05-31 22:34:00 +00:00
|
|
|
|
2016-11-05 01:00:56 +00:00
|
|
|
Writer::Writer() = default;
|
|
|
|
|
|
|
|
|
|
Writer::~Writer() = default;
|
|
|
|
|
|
2013-01-23 01:18:43 +00:00
|
|
|
} // end namespace lld
|