aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/Driver.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2009-04-26 23:15:05 +0000
committerDouglas Gregor <dgregor@apple.com>2009-04-26 23:15:05 +0000
commitfc68bca8a4351ed36593fcc97a260696719e0ed4 (patch)
tree7e83fb0d872d36611c5ca49d45dab36a5dce3138 /lib/Driver/Driver.cpp
parent0ff8cda4442cff571aba1be91dd16f64a0bf16aa (diff)
Turn PCH off by default, yet again. I'm happier about it this time, though
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@70168 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 64e94753b6..d88f1b3598 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(true),
+ CCCUseClangCPP(true), CCCUsePCH(false),
SuppressMissingInputWarning(false)
{
// Only use clang on i386 and x86_64 by default.