From bf47af30766d8118bb48cc5963903bfcdf0d7ee3 Mon Sep 17 00:00:00 2001 From: Adrian Prantl Date: Tue, 7 Jul 2015 23:19:46 +0000 Subject: Revert r241620 and follow-up commits while investigating linux buildbot failures. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@241642 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/driver/cc1_main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/driver/cc1_main.cpp') diff --git a/tools/driver/cc1_main.cpp b/tools/driver/cc1_main.cpp index 65f845ddc4..972bf5bf3e 100644 --- a/tools/driver/cc1_main.cpp +++ b/tools/driver/cc1_main.cpp @@ -14,7 +14,7 @@ //===----------------------------------------------------------------------===// #include "llvm/Option/Arg.h" -#include "clang/CodeGen/ObjectFilePCHContainerOperations.h" +#include "clang/Frontend/PCHContainerOperations.h" #include "clang/Driver/DriverDiagnostic.h" #include "clang/Driver/Options.h" #include "clang/Frontend/CompilerInstance.h" @@ -65,8 +65,8 @@ void initializePollyPasses(llvm::PassRegistry &Registry); #endif int cc1_main(ArrayRef Argv, const char *Argv0, void *MainAddr) { - std::unique_ptr Clang(new CompilerInstance( - std::make_shared())); + std::unique_ptr Clang( + new CompilerInstance(std::make_shared())); IntrusiveRefCntPtr DiagID(new DiagnosticIDs()); // Initialize targets first, so that --version shows registered targets. -- cgit v1.2.1