diff options
Diffstat (limited to 'lld/lib/Core/Atom.cpp')
-rw-r--r-- | lld/lib/Core/Atom.cpp | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lld/lib/Core/Atom.cpp b/lld/lib/Core/Atom.cpp deleted file mode 100644 index 29aa1c805fa..00000000000 --- a/lld/lib/Core/Atom.cpp +++ /dev/null @@ -1,44 +0,0 @@ -//===- Core/Atom.cpp - The Fundimental Unit of Linking --------------------===// -// -// The LLVM Linker -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#include "lld/Core/Atom.h" - -#include "llvm/ADT/ArrayRef.h" -#include "llvm/ADT/StringRef.h" - -namespace lld { - - Atom::~Atom() {} - - llvm::StringRef Atom::name() const { - return llvm::StringRef(); - } - - llvm::StringRef Atom::customSectionName() const { - return llvm::StringRef(); - } - - llvm::ArrayRef<uint8_t> Atom::rawContent() const { - return llvm::ArrayRef<uint8_t>(); - } - - Atom::ContentPermissions Atom::permissions() const { - return perm___; - } - - Reference::iterator Atom::referencesBegin() const { - return 0; - } - - Reference::iterator Atom::referencesEnd() const{ - return 0; - } - - -} // namespace lld |