blob: 70ce886919aabbecdc8d23ab4ffeeac6390704d0 [file] [log] [blame]
//===- Core/File.cpp - A Contaier of Atoms --------------------------------===//
//
// The LLVM Linker
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "lld/Core/File.h"
#include "lld/Core/LLVM.h"
namespace lld {
File::~File() {}
StringRef File::translationUnitSource() const {
return StringRef();
}
const Atom *File::entryPoint() const {
return nullptr;
}
}