2011-12-18 16:27:59 +08:00
|
|
|
//===- 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() {}
|
|
|
|
|
2012-03-08 08:18:30 +08:00
|
|
|
llvm::StringRef File::translationUnitSource() const {
|
|
|
|
return llvm::StringRef();
|
2011-12-22 07:29:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-18 16:27:59 +08:00
|
|
|
}
|