blob: 09c3f8aba7b36602dbc7131b188b3e8729e3b339 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//===- 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() {}
bool File::translationUnitSource(llvm::StringRef &path) const {
return false;
}
}
|