diff options
author | Timur Iskhodzhanov <timurrrr@google.com> | 2013-11-05 15:54:58 +0000 |
---|---|---|
committer | Timur Iskhodzhanov <timurrrr@google.com> | 2013-11-05 15:54:58 +0000 |
commit | 5877663622877127b0cfdf8230bd627271f50d9c (patch) | |
tree | ec078930ca0cb38f7dfd775bcc0f002675d16802 /clang/lib/CodeGen/CodeGenModule.h | |
parent | 41778fd28f9b6877e34dcced85deb2c6dec50b4a (diff) | |
download | bcm5719-llvm-5877663622877127b0cfdf8230bd627271f50d9c.tar.gz bcm5719-llvm-5877663622877127b0cfdf8230bd627271f50d9c.zip |
Fix vbtable indices when a class shares the vbptr with a non-virtual base
llvm-svn: 194082
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index 249ad331759..45a9e20a510 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -523,12 +523,12 @@ public: CodeGenVTables &getVTables() { return VTables; } - ItaniumVTableContext &getVTableContext() { - return VTables.getVTableContext(); + ItaniumVTableContext &getItaniumVTableContext() { + return VTables.getItaniumVTableContext(); } - MicrosoftVFTableContext &getVFTableContext() { - return VTables.getVFTableContext(); + MicrosoftVTableContext &getMicrosoftVTableContext() { + return VTables.getMicrosoftVTableContext(); } llvm::MDNode *getTBAAInfo(QualType QTy); |