[cfe-commits] r64356 - /cfe/trunk/lib/Lex/PTHLexer.cpp

Ted Kremenek kremenek at apple.com
Wed Feb 11 19:45:39 PST 2009


Author: kremenek
Date: Wed Feb 11 21:45:39 2009
New Revision: 64356

URL: http://llvm.org/viewvc/llvm-project?rev=64356&view=rev
Log:
Re-enable PTH stat caching.  All tests pass now.

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=64356&r1=64355&r2=64356&view=diff

==============================================================================
--- cfe/trunk/lib/Lex/PTHLexer.cpp (original)
+++ cfe/trunk/lib/Lex/PTHLexer.cpp Wed Feb 11 21:45:39 2009
@@ -825,6 +825,5 @@
 };
 
 StatSysCallCache *PTHManager::createStatCache() {
-  return 0;
-//  return new PTHStatCache(*((PTHFileLookup*) FileLookup));
+  return new PTHStatCache(*((PTHFileLookup*) FileLookup));
 }





More information about the cfe-commits mailing list