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
22 lines
498 B
C++
22 lines
498 B
C++
//===- Core/File.cpp - A Contaier 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"
|
|
|
|
namespace lld {
|
|
|
|
File::~File() {}
|
|
|
|
StringRef File::translationUnitSource() const {
|
|
return StringRef();
|
|
}
|
|
|
|
}
|