2013-01-08 23:43:11 +00:00
|
|
|
//===- Core/File.cpp - A Container of Atoms -------------------------------===//
|
2011-12-18 08:27:59 +00:00
|
|
|
//
|
|
|
|
|
// 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"
|
2012-04-03 18:39:40 +00:00
|
|
|
#include "lld/Core/LLVM.h"
|
2011-12-18 08:27:59 +00:00
|
|
|
|
|
|
|
|
namespace lld {
|
|
|
|
|
|
2014-09-08 18:01:42 +00:00
|
|
|
File::~File() {}
|
|
|
|
|
|
2013-01-05 02:22:35 +00:00
|
|
|
File::atom_collection_empty<DefinedAtom> File::_noDefinedAtoms;
|
|
|
|
|
File::atom_collection_empty<UndefinedAtom> File::_noUndefinedAtoms;
|
2013-08-09 04:19:54 +00:00
|
|
|
File::atom_collection_empty<SharedLibraryAtom> File::_noSharedLibraryAtoms;
|
2013-01-05 02:22:35 +00:00
|
|
|
File::atom_collection_empty<AbsoluteAtom> File::_noAbsoluteAtoms;
|
|
|
|
|
|
2013-01-23 22:32:56 +00:00
|
|
|
} // namespace lld
|