blob: 70ce886919aabbecdc8d23ab4ffeeac6390704d0 [file] [log] [blame]
Michael J. Spencer773a8fb2011-12-18 08:27:59 +00001//===- Core/File.cpp - A Contaier of Atoms --------------------------------===//
2//
3// The LLVM Linker
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lld/Core/File.h"
Michael J. Spencere6203a52012-04-03 18:39:40 +000011#include "lld/Core/LLVM.h"
Michael J. Spencer773a8fb2011-12-18 08:27:59 +000012
13namespace lld {
14
15File::~File() {}
16
Michael J. Spencere6203a52012-04-03 18:39:40 +000017StringRef File::translationUnitSource() const {
18 return StringRef();
Nick Kledzikf46669c2011-12-21 23:29:36 +000019}
20
Nick Kledzikb334be12012-04-07 01:31:00 +000021const Atom *File::entryPoint() const {
22 return nullptr;
23}
Nick Kledzikf46669c2011-12-21 23:29:36 +000024
Michael J. Spencer773a8fb2011-12-18 08:27:59 +000025}