summaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/CGVTables.h
diff options
context:
space:
mode:
authorTimur Iskhodzhanov <timurrrr@google.com>2013-10-09 11:33:51 +0000
committerTimur Iskhodzhanov <timurrrr@google.com>2013-10-09 11:33:51 +0000
commitf07465828da2a07297646a2277ba8fe3abd2d4c3 (patch)
tree1e946e7b5c4d16ac48a034a3599c9534407e158e /lib/CodeGen/CGVTables.h
parent728b279dc9405701d4cae02eea49acbb33f86a9b (diff)
Code cleanup: rename VTableContext to ItaniumVTableContext, VTableBuilder to ItaniumVTableBuilder and clang-format code around
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192288 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CGVTables.h')
-rw-r--r--lib/CodeGen/CGVTables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CGVTables.h b/lib/CodeGen/CGVTables.h
index e17ad89c5e..7c94a07fd9 100644
--- a/lib/CodeGen/CGVTables.h
+++ b/lib/CodeGen/CGVTables.h
@@ -33,7 +33,7 @@ class CodeGenVTables {
// FIXME: Consider moving VTContext and VFTContext into respective CXXABI
// classes?
- VTableContext VTContext;
+ ItaniumVTableContext VTContext;
OwningPtr<MicrosoftVFTableContext> VFTContext;
/// VTableAddressPointsMapTy - Address points for a single vtable.
@@ -72,7 +72,7 @@ public:
CodeGenVTables(CodeGenModule &CGM);
- VTableContext &getVTableContext() { return VTContext; }
+ ItaniumVTableContext &getVTableContext() { return VTContext; }
MicrosoftVFTableContext &getVFTableContext() { return *VFTContext.get(); }