diff options
author | Devang Patel <dpatel@apple.com> | 2011-03-23 16:29:39 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2011-03-23 16:29:39 +0000 |
commit | e80d56771736c85fd8365c394a6731923b17e91d (patch) | |
tree | d4f4708922e245cccf1e813b6449ad92681ed11f /lib/CodeGen/CodeGenModule.h | |
parent | 29233802236f7fe1db20e00eca4f5cc8f3f64ade (diff) |
Update type cache when a type is completed.
Radar 9168773
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@128150 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | lib/CodeGen/CodeGenModule.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/CodeGen/CodeGenModule.h b/lib/CodeGen/CodeGenModule.h index 5b8164f6be..e6fcf61473 100644 --- a/lib/CodeGen/CodeGenModule.h +++ b/lib/CodeGen/CodeGenModule.h @@ -506,10 +506,8 @@ public: ///@} - void UpdateCompletedType(const TagDecl *TD) { - // Make sure that this type is translated. - Types.UpdateCompletedType(TD); - } + // UpdateCompleteType - Make sure that this type is translated. + void UpdateCompletedType(const TagDecl *TD); llvm::Constant *getMemberPointerConstant(const UnaryOperator *e); |