swift: update for LLVM SVN r344140

Update swift's usage of clang::vfs which has been hoisted into LLVM.
This commit is contained in:
Saleem Abdulrasool
2018-10-12 09:09:02 -07:00
committed by Bob Wilson
parent fb305479b6
commit adcdc39791
7 changed files with 25 additions and 24 deletions

View File

@@ -50,7 +50,7 @@ std::error_code SerializedModuleLoaderBase::openModuleFiles(
(!ModuleBuffer && !ModuleDocBuffer)) &&
"Module and Module Doc buffer must both be initialized or NULL");
clang::vfs::FileSystem &FS = *Ctx.SourceMgr.getFileSystem();
llvm::vfs::FileSystem &FS = *Ctx.SourceMgr.getFileSystem();
// Try to open the module file first. If we fail, don't even look for the
// module documentation file.