diff options
author | Eric Christopher <echristo@apple.com> | 2012-08-20 23:32:17 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-08-20 23:32:17 +0000 |
commit | bf3a96650c449a5f8dd1a818b3ce1afa8dddfc39 (patch) | |
tree | 66b4a0baf8e593ab563ebcc738e52dce75aeda8a /lib/CodeGen/CGDebugInfo.h | |
parent | dce750b15eb5eb797ac9bbea118333d7d1896831 (diff) |
Reapply:
Author: Eric Christopher <echristo@apple.com>
Date: Thu Aug 16 23:50:46 2012 +0000
Add some caching here for the builtin types.
rdar://12117935
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162066 91177308-0d34-0410-b5e6-96231b3b80d8
after fixing a thinko.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162243 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGDebugInfo.h')
-rw-r--r-- | lib/CodeGen/CGDebugInfo.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/CGDebugInfo.h b/lib/CodeGen/CGDebugInfo.h index 44cc49ade1..2e88a7376a 100644 --- a/lib/CodeGen/CGDebugInfo.h +++ b/lib/CodeGen/CGDebugInfo.h @@ -50,6 +50,9 @@ class CGDebugInfo { llvm::DICompileUnit TheCU; SourceLocation CurLoc, PrevLoc; llvm::DIType VTablePtrType; + llvm::DIType ClassTy; + llvm::DIType ObjTy; + llvm::DIType SelTy; /// TypeCache - Cache of previously constructed Types. llvm::DenseMap<void *, llvm::WeakVH> TypeCache; |