diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-02-12 03:45:39 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-02-12 03:45:39 +0000 |
commit | b4c85ccaaa1f798c04c43f864cf4503c0db69f5d (patch) | |
tree | 28a1e9b549f92d0bd0f676cbb6b06fef142fc450 | |
parent | c6a2a372229e4f9550e44547c4f24e339b766b03 (diff) | |
download | bcm5719-llvm-b4c85ccaaa1f798c04c43f864cf4503c0db69f5d.tar.gz bcm5719-llvm-b4c85ccaaa1f798c04c43f864cf4503c0db69f5d.zip |
Re-enable PTH stat caching. All tests pass now.
llvm-svn: 64356
-rw-r--r-- | clang/lib/Lex/PTHLexer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/lib/Lex/PTHLexer.cpp b/clang/lib/Lex/PTHLexer.cpp index 8e789d93487..4648ac8ee49 100644 --- a/clang/lib/Lex/PTHLexer.cpp +++ b/clang/lib/Lex/PTHLexer.cpp @@ -825,6 +825,5 @@ public: }; StatSysCallCache *PTHManager::createStatCache() { - return 0; -// return new PTHStatCache(*((PTHFileLookup*) FileLookup)); + return new PTHStatCache(*((PTHFileLookup*) FileLookup)); } |