[cfe-commits] r64354 - /cfe/trunk/lib/Lex/PTHLexer.cpp
Ted Kremenek
kremenek at apple.com
Wed Feb 11 19:36:54 PST 2009
Author: kremenek
Date: Wed Feb 11 21:36:54 2009
New Revision: 64354
URL: http://llvm.org/viewvc/llvm-project?rev=64354&view=rev
Log:
Temporarily disable PTH stat caching as it appears to be failing on some machines.
Modified:
cfe/trunk/lib/Lex/PTHLexer.cpp
Modified: cfe/trunk/lib/Lex/PTHLexer.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/Lex/PTHLexer.cpp?rev=64354&r1=64353&r2=64354&view=diff
==============================================================================
--- cfe/trunk/lib/Lex/PTHLexer.cpp (original)
+++ cfe/trunk/lib/Lex/PTHLexer.cpp Wed Feb 11 21:36:54 2009
@@ -825,5 +825,6 @@
};
StatSysCallCache *PTHManager::createStatCache() {
- return new PTHStatCache(*((PTHFileLookup*) FileLookup));
+ return 0;
+// return new PTHStatCache(*((PTHFileLookup*) FileLookup));
}
More information about the cfe-commits
mailing list