Michael J. Spencer | 773a8fb | 2011-12-18 08:27:59 +0000 | [diff] [blame] | 1 | //===- 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. Spencer | e6203a5 | 2012-04-03 18:39:40 +0000 | [diff] [blame] | 11 | #include "lld/Core/LLVM.h" |
Michael J. Spencer | 773a8fb | 2011-12-18 08:27:59 +0000 | [diff] [blame] | 12 | |
| 13 | namespace lld { |
| 14 | |
| 15 | File::~File() {} |
| 16 | |
Michael J. Spencer | e6203a5 | 2012-04-03 18:39:40 +0000 | [diff] [blame] | 17 | StringRef File::translationUnitSource() const { |
| 18 | return StringRef(); |
Nick Kledzik | f46669c | 2011-12-21 23:29:36 +0000 | [diff] [blame] | 19 | } |
| 20 | |
Nick Kledzik | b334be1 | 2012-04-07 01:31:00 +0000 | [diff] [blame^] | 21 | const Atom *File::entryPoint() const { |
| 22 | return nullptr; |
| 23 | } |
Nick Kledzik | f46669c | 2011-12-21 23:29:36 +0000 | [diff] [blame] | 24 | |
Michael J. Spencer | 773a8fb | 2011-12-18 08:27:59 +0000 | [diff] [blame] | 25 | } |