diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-12 03:36:54 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-12 03:36:54 +0000 |
commit | c8b44f59979994c7a2e0865144615cb04f7fcd1d (patch) | |
tree | 3b84ccee5017dc2886442e9726e127ffd10a45ba /lib/Lex/PTHLexer.cpp | |
parent | 337edcdbec05316b407d0d64865c88ff8597d910 (diff) |
Temporarily disable PTH stat caching as it appears to be failing on some machines.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@64354 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/PTHLexer.cpp')
-rw-r--r-- | lib/Lex/PTHLexer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Lex/PTHLexer.cpp b/lib/Lex/PTHLexer.cpp index 9a973c9793..64ddb925c8 100644 --- a/lib/Lex/PTHLexer.cpp +++ b/lib/Lex/PTHLexer.cpp @@ -825,5 +825,6 @@ public: }; StatSysCallCache *PTHManager::createStatCache() { - return new PTHStatCache(*((PTHFileLookup*) FileLookup)); + return 0; +// return new PTHStatCache(*((PTHFileLookup*) FileLookup)); } |