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 | 3280145da41d3ccd4d317b0ba05409c7dffac85c (patch) | |
tree | edfb722fa9bd56e214e3646754dd28eec22377c4 | |
parent | a5c2c27ebd5c714105b526b0317a192bf75f1659 (diff) | |
download | bcm5719-llvm-3280145da41d3ccd4d317b0ba05409c7dffac85c.tar.gz bcm5719-llvm-3280145da41d3ccd4d317b0ba05409c7dffac85c.zip |
Temporarily disable PTH stat caching as it appears to be failing on some machines.
llvm-svn: 64354
-rw-r--r-- | clang/lib/Lex/PTHLexer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Lex/PTHLexer.cpp b/clang/lib/Lex/PTHLexer.cpp index 9a973c97938..64ddb925c83 100644 --- a/clang/lib/Lex/PTHLexer.cpp +++ b/clang/lib/Lex/PTHLexer.cpp @@ -825,5 +825,6 @@ public: }; StatSysCallCache *PTHManager::createStatCache() { - return new PTHStatCache(*((PTHFileLookup*) FileLookup)); + return 0; +// return new PTHStatCache(*((PTHFileLookup*) FileLookup)); } |