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