summaryrefslogtreecommitdiffstats
path: root/clang/lib/Frontend/CompilerInstance.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-23 07:51:02 +0000
committerChris Lattner <sabre@nondot.org>2010-11-23 07:51:02 +0000
commit3f5a9efb2df0d6728c0ea928704978f223dc1e08 (patch)
tree8ef8b8b7a88eb9ca38016446db6bd68ff27a004f /clang/lib/Frontend/CompilerInstance.cpp
parent3c7cab1402304648b57d86d8e74d409fe7bd7112 (diff)
downloadbcm5719-llvm-3f5a9efb2df0d6728c0ea928704978f223dc1e08.tar.gz
bcm5719-llvm-3f5a9efb2df0d6728c0ea928704978f223dc1e08.zip
give FileManager a 'FileSystemOptions' ivar, which will be used
to simplify a bunch of code in it. It should ultimately get inlined into FileManager. llvm-svn: 120007
Diffstat (limited to 'clang/lib/Frontend/CompilerInstance.cpp')
-rw-r--r--clang/lib/Frontend/CompilerInstance.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Frontend/CompilerInstance.cpp b/clang/lib/Frontend/CompilerInstance.cpp
index 67552747d44..06917706bed 100644
--- a/clang/lib/Frontend/CompilerInstance.cpp
+++ b/clang/lib/Frontend/CompilerInstance.cpp
@@ -148,7 +148,7 @@ CompilerInstance::createDiagnostics(const DiagnosticOptions &Opts,
// File Manager
void CompilerInstance::createFileManager() {
- FileMgr.reset(new FileManager());
+ FileMgr.reset(new FileManager(getFileSystemOpts()));
}
// Source Manager
OpenPOWER on IntegriCloud