aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Frontend/FrontendAction.cpp
diff options
context:
space:
mode:
authorJuergen Ributzka <juergen@apple.com>2014-02-20 05:24:58 +0000
committerJuergen Ributzka <juergen@apple.com>2014-02-20 05:24:58 +0000
commita32575e4f65a4f86f55bfefe9144c70866980c10 (patch)
tree371381616925c1fadf3af9d4bf4cc06a4e429d49 /clang/lib/Frontend/FrontendAction.cpp
parentb9e44d6bcf31125b638c8b2eb8aa021fb94b6ed7 (diff)
downloadllvm-a32575e4f65a4f86f55bfefe9144c70866980c10.zip
llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.tar.gz
llvm-a32575e4f65a4f86f55bfefe9144c70866980c10.tar.bz2
Reverting the virtual file system implementation, because it triggers an assertion
in our internal build bots. This reverts commits 201618, 201635, 201636, 201639, 201685, 201691, and 201696. llvm-svn: 201755
Diffstat (limited to 'clang/lib/Frontend/FrontendAction.cpp')
-rw-r--r--clang/lib/Frontend/FrontendAction.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Frontend/FrontendAction.cpp b/clang/lib/Frontend/FrontendAction.cpp
index 4e04c2c..0baf3e5 100644
--- a/clang/lib/Frontend/FrontendAction.cpp
+++ b/clang/lib/Frontend/FrontendAction.cpp
@@ -159,6 +159,7 @@ ASTConsumer* FrontendAction::CreateWrappedASTConsumer(CompilerInstance &CI,
return new MultiplexConsumer(Consumers);
}
+
bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
const FrontendInputFile &Input) {
assert(!Instance && "Already processing a source file!");
@@ -212,8 +213,6 @@ bool FrontendAction::BeginSourceFile(CompilerInstance &CI,
}
// Set up the file and source managers, if needed.
- if (!CI.hasVirtualFileSystem())
- CI.createVirtualFileSystem();
if (!CI.hasFileManager())
CI.createFileManager();
if (!CI.hasSourceManager())