2015-01-21 22:54:56 +00:00
|
|
|
//===- lib/Core/Writer.cpp ------------------------------------------------===//
|
2012-04-07 01:31:00 +00:00
|
|
|
//
|
|
|
|
|
// The LLVM Linker
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
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
|