diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-02-19 03:34:59 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-02-19 03:34:59 +0000 |
commit | b50b23f9ac92b22a16f46573a1c57ab80dc11e0d (patch) | |
tree | 7353ad0facd6ddc45dbce91558ba37a52c452abb /clang/lib/Frontend/CompilerInstance.cpp | |
parent | 87ba87bc4d200f64bbf56673f3a6f01c13943d1f (diff) | |
download | bcm5719-llvm-b50b23f9ac92b22a16f46573a1c57ab80dc11e0d.tar.gz bcm5719-llvm-b50b23f9ac92b22a16f46573a1c57ab80dc11e0d.zip |
Pass VFS from CompilerInstance to FileManager
This change was somehow missed from r201618
llvm-svn: 201636
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInstance.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp index 0e9b0c0ebe3..5311c804974 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -202,7 +202,7 @@ void CompilerInstance::createVirtualFileSystem() { void CompilerInstance::createFileManager() { assert(hasVirtualFileSystem() && "expected virtual file system"); - FileMgr = new FileManager(getFileSystemOpts()); + FileMgr = new FileManager(getFileSystemOpts(), VirtualFileSystem); } // Source Manager |