aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-26 22:21:26 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-26 22:21:26 +0000
commitf527ce460311769e16dfc260f021b6b9032910fb (patch)
tree324a52436ec78af105445dda28e7b094bf93256e /lib/Driver/Driver.cpp
parent405bad07391494d2eb025f8222c256c66b56e5f8 (diff)
Trying turning on PCH by default yet again. We might actually a chance at success now
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70164 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Driver.cpp')
-rw-r--r--lib/Driver/Driver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp
index d88f1b3598..64e94753b6 100644
--- a/lib/Driver/Driver.cpp
+++ b/lib/Driver/Driver.cpp
@@ -45,7 +45,7 @@ Driver::Driver(const char *_Name, const char *_Dir,
Host(0),
CCCIsCXX(false), CCCEcho(false), CCCPrintBindings(false),
CCCGenericGCCName("gcc"), CCCUseClang(true), CCCUseClangCXX(false),
- CCCUseClangCPP(true), CCCUsePCH(false),
+ CCCUseClangCPP(true), CCCUsePCH(true),
SuppressMissingInputWarning(false)
{
// Only use clang on i386 and x86_64 by default.