From cf58e6249c6b018508e34bcb76202caa42d2451a Mon Sep 17 00:00:00 2001 From: Ted Kremenek Date: Wed, 10 Dec 2008 19:40:23 +0000 Subject: [PATCH] Declare PerIDCache as IdentifierInfo** instead of void*. This is just cleaner. No performance change. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@60843 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/Lex/PTHManager.h | 5 +++-- lib/Lex/PTHLexer.cpp | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/clang/Lex/PTHManager.h b/include/clang/Lex/PTHManager.h index c9b7b52ec1..e0c4776d4b 100644 --- a/include/clang/Lex/PTHManager.h +++ b/include/clang/Lex/PTHManager.h @@ -38,7 +38,7 @@ class PTHManager { /// IdMap - A lazily generated cache mapping from persistent identifiers to /// IdentifierInfo*. - void* PerIDCache; + IdentifierInfo** PerIDCache; /// FileLookup - Abstract data structure used for mapping between files /// and token data in the PTH file. @@ -59,7 +59,8 @@ class PTHManager { /// This constructor is intended to only be called by the static 'Create' /// method. PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup, - const char* idDataTable, void* perIDCache, Preprocessor& pp); + const char* idDataTable, IdentifierInfo** perIDCache, + Preprocessor& pp); // Do not implement. PTHManager(); diff --git a/lib/Lex/PTHLexer.cpp b/lib/Lex/PTHLexer.cpp index 9609930878..a92d578518 100644 --- a/lib/Lex/PTHLexer.cpp +++ b/lib/Lex/PTHLexer.cpp @@ -236,7 +236,7 @@ public: //===----------------------------------------------------------------------===// PTHManager::PTHManager(const llvm::MemoryBuffer* buf, void* fileLookup, - const char* idDataTable, void* perIDCache, + const char* idDataTable, IdentifierInfo** perIDCache, Preprocessor& pp) : Buf(buf), PerIDCache(perIDCache), FileLookup(fileLookup), IdDataTable(idDataTable), ITable(pp.getIdentifierTable()), PP(pp) {} @@ -324,7 +324,7 @@ IdentifierInfo* PTHManager::ReadIdentifierInfo(const char*& D) { --persistentID; // Check if the IdentifierInfo has already been resolved. - IdentifierInfo*& II = ((IdentifierInfo**) PerIDCache)[persistentID]; + IdentifierInfo*& II = PerIDCache[persistentID]; if (II) return II; // Look in the PTH file for the string data for the IdentifierInfo object. -- 2.40.0