aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-25 06:28:32 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-25 06:28:32 +0000
commitc58fe35cedbd64f3c8f55405cd32131c866b035d (patch)
tree68498ecad787112baf1cb0d3fdf307c7209400a5 /lib/Driver/Driver.cpp
parent2dbd285f5033ca6dea25babfd1c43d9fec35e7e5 (diff)
Temporarily try to build with PCH by default. Revert this change once
we see what trouble it causes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70017 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.