summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/ModuleDependencyCollector.cpp
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-02-23 07:06:12 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2016-02-23 07:06:12 +0000
commitb7eb8db02369b7abf72ba6d06f9064c05f76cbb7 (patch)
treed9521f09a170b085f4b0bb6be193dcea80e3e33b /clang/lib/Frontend/ModuleDependencyCollector.cpp
parent7ccf1373ac8ba9fb1bbae45372e57f2246db9c26 (diff)
downloadbcm5719-llvm-b7eb8db02369b7abf72ba6d06f9064c05f76cbb7.tar.gz
bcm5719-llvm-b7eb8db02369b7abf72ba6d06f9064c05f76cbb7.zip
Revert "[VFS] Add 'overlay-relative' field to YAML files" and "[VFS] Fix call to getVFSFromYAML in unittests"
This reverts commit r261552 and r261556 because of failing unittests on windows: Failing Tests (4): Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.CaseInsensitive Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.DirectoryIteration Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.MappedFiles Clang-Unit :: Basic/BasicTests.exe/VFSFromYAMLTest.UseExternalName llvm-svn: 261613
Diffstat (limited to 'clang/lib/Frontend/ModuleDependencyCollector.cpp')
-rw-r--r--clang/lib/Frontend/ModuleDependencyCollector.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/clang/lib/Frontend/ModuleDependencyCollector.cpp b/clang/lib/Frontend/ModuleDependencyCollector.cpp
index 7ba04645590..df5e19df91d 100644
--- a/clang/lib/Frontend/ModuleDependencyCollector.cpp
+++ b/clang/lib/Frontend/ModuleDependencyCollector.cpp
@@ -51,10 +51,6 @@ void ModuleDependencyCollector::writeFileMap() {
SmallString<256> Dest = getDest();
llvm::sys::path::append(Dest, "vfs.yaml");
- // Default to use relative overlay directories in the VFS yaml file. This
- // allows crash reproducer scripts to work across machines.
- VFSWriter.setOverlayDir(getDest());
-
std::error_code EC;
llvm::raw_fd_ostream OS(Dest, EC, llvm::sys::fs::F_Text);
if (EC) {
OpenPOWER on IntegriCloud