forked from OSchip/llvm-project
22 lines
484 B
C++
22 lines
484 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"
|
|
|
|
namespace lld {
|
|
|
|
File::~File() {}
|
|
|
|
llvm::StringRef File::translationUnitSource() const {
|
|
return llvm::StringRef();
|
|
}
|
|
|
|
|
|
}
|