diff options
author | Nick Kledzik <kledzik@apple.com> | 2012-04-18 21:55:06 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2012-04-18 21:55:06 +0000 |
commit | bb963dfb7ebeab75764e962734c88aca44422dbf (patch) | |
tree | cc27be9a8272806d858158c0cdb1104235c6e855 /lld/lib/Core/File.cpp | |
parent | eb1c2bdc1f55fbc5d1e7bb86e9f0e038b0f5adb7 (diff) | |
download | bcm5719-llvm-bb963dfb7ebeab75764e962734c88aca44422dbf.tar.gz bcm5719-llvm-bb963dfb7ebeab75764e962734c88aca44422dbf.zip |
Factor out core linking options from Platform in a new ResolverOptions
class. Change Resolver to no longer use Platform. Core linking
now issues errors directly. We need to factor that out later.
Rework how Darwin executable writer finds "main" atom. It now
adds to core linking an Atom which has a Reference to "main".
llvm-svn: 155060
Diffstat (limited to 'lld/lib/Core/File.cpp')
-rw-r--r-- | lld/lib/Core/File.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lld/lib/Core/File.cpp b/lld/lib/Core/File.cpp index 70ce886919a..768f1d26282 100644 --- a/lld/lib/Core/File.cpp +++ b/lld/lib/Core/File.cpp @@ -18,8 +18,4 @@ StringRef File::translationUnitSource() const { return StringRef(); } -const Atom *File::entryPoint() const { - return nullptr; -} - } |