diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-17 17:55:49 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-17 17:55:49 +0000 |
commit | 52ce9bb2fbc73a23cc7da27c94e5a898cf258c09 (patch) | |
tree | cc8abd4f7911b5db477175cf37071b9ac60fe7c8 /clang/lib/Frontend/CompilerInstance.cpp | |
parent | ea68af43e80d00e64d340e6e25cc8975112997de (diff) | |
download | bcm5719-llvm-52ce9bb2fbc73a23cc7da27c94e5a898cf258c09.tar.gz bcm5719-llvm-52ce9bb2fbc73a23cc7da27c94e5a898cf258c09.zip |
Create a new Serialization module that contains all the PCH code, and will contain all the module code in the future. Update the Makefiles, CMake projects and the Xcode project. I hope I did everything right for Xcode. No functionality change.
llvm-svn: 111258
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 8e1dbcb9d24..aaa67804cef 100644 --- a/clang/lib/Frontend/CompilerInstance.cpp +++ b/clang/lib/Frontend/CompilerInstance.cpp @@ -21,11 +21,11 @@ #include "clang/Lex/PTHManager.h" #include "clang/Frontend/ChainedDiagnosticClient.h" #include "clang/Frontend/FrontendAction.h" -#include "clang/Frontend/PCHReader.h" #include "clang/Frontend/FrontendDiagnostic.h" #include "clang/Frontend/TextDiagnosticPrinter.h" #include "clang/Frontend/VerifyDiagnosticsClient.h" #include "clang/Frontend/Utils.h" +#include "clang/Serialization/PCHReader.h" #include "clang/Sema/CodeCompleteConsumer.h" #include "llvm/LLVMContext.h" #include "llvm/Support/MemoryBuffer.h" |