diff options
author | Ted Kremenek <kremenek@apple.com> | 2010-03-29 18:29:57 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2010-03-29 18:29:57 +0000 |
commit | 590838badd46e0559a6b709857fb87530e546276 (patch) | |
tree | 90d42268294e9bb0218b64f97d8296639063b4c2 /lib/CodeGen/CGDebugInfo.cpp | |
parent | 3edbeb78fe5ea7fffea7a94575478cde19e830e0 (diff) |
Change 'TypeCache' from being an std::map to a llvm::DenseMap. This reduces codegen time
on one .i file from 403.gcc by 0.5%.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99823 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.cpp')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CGDebugInfo.cpp b/lib/CodeGen/CGDebugInfo.cpp index 97e99ea1e0..d8a9f36c82 100644 --- a/lib/CodeGen/CGDebugInfo.cpp +++ b/lib/CodeGen/CGDebugInfo.cpp @@ -1212,7 +1212,7 @@ llvm::DIType CGDebugInfo::getOrCreateType(QualType Ty, Ty = UnwrapTypeForDebugInfo(Ty); // Check for existing entry. - std::map<void *, llvm::WeakVH>::iterator it = + llvm::DenseMap<void *, llvm::WeakVH>::iterator it = TypeCache.find(Ty.getAsOpaquePtr()); if (it != TypeCache.end()) { // Verify that the debug info still exists. |