diff options
author | Raphael Isemann <teemperor@gmail.com> | 2020-09-01 12:21:44 +0200 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2020-09-01 12:21:44 +0200 |
commit | 7c80f2da812e45bbdfa3c8f9ab24440f8ef3362a (patch) | |
tree | 22279444f6d39f801f3132a01a2e09bfcf99025b /llvm/lib/Support/VirtualFileSystem.cpp | |
parent | a787a4ed16d6867f56d81159a8fcf2b711d18a8a (diff) | |
download | llvm-7c80f2da812e45bbdfa3c8f9ab24440f8ef3362a.zip llvm-7c80f2da812e45bbdfa3c8f9ab24440f8ef3362a.tar.gz llvm-7c80f2da812e45bbdfa3c8f9ab24440f8ef3362a.tar.bz2 |
Revert "[lldb] Add reproducer verifier"
This reverts commit 297f69afac58fc9dc13897857a5e70131c5adc85. It broke
the Fedora 33 x86-64 bot. See the review for more info.
Diffstat (limited to 'llvm/lib/Support/VirtualFileSystem.cpp')
-rw-r--r-- | llvm/lib/Support/VirtualFileSystem.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/llvm/lib/Support/VirtualFileSystem.cpp b/llvm/lib/Support/VirtualFileSystem.cpp index bbde44c..5b757c9 100644 --- a/llvm/lib/Support/VirtualFileSystem.cpp +++ b/llvm/lib/Support/VirtualFileSystem.cpp @@ -1159,17 +1159,6 @@ StringRef RedirectingFileSystem::getExternalContentsPrefixDir() const { return ExternalContentsPrefixDir; } -void RedirectingFileSystem::setFallthrough(bool Fallthrough) { - IsFallthrough = Fallthrough; -} - -std::vector<StringRef> RedirectingFileSystem::getRoots() const { - std::vector<StringRef> R; - for (const auto &Root : Roots) - R.push_back(Root->getName()); - return R; -} - void RedirectingFileSystem::dump(raw_ostream &OS) const { for (const auto &Root : Roots) dumpEntry(OS, Root.get()); |