//===- Core/File.cpp - A Container 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" #include namespace lld { File::~File() { } File::AtomVector File::_noDefinedAtoms; File::AtomVector File::_noUndefinedAtoms; File::AtomVector File::_noSharedLibraryAtoms; File::AtomVector File::_noAbsoluteAtoms; std::error_code File::parse() { std::lock_guard lock(_parseMutex); if (!_lastError.hasValue()) _lastError = doParse(); return _lastError.getValue(); } } // namespace lld