diff options
author | Mike Stump <mrs@apple.com> | 2009-12-02 18:57:08 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-12-02 18:57:08 +0000 |
commit | c01c2b87e83aa3083f0d7eccda0e9c1dbc4ad2f4 (patch) | |
tree | 7bbc76be645fd8d8c683d2a409843787b1939f66 /clang/lib/CodeGen/CGVtable.cpp | |
parent | d6eb364b31ac5222d8eaf2e737e2941cd45ac565 (diff) | |
download | bcm5719-llvm-c01c2b87e83aa3083f0d7eccda0e9c1dbc4ad2f4.tar.gz bcm5719-llvm-c01c2b87e83aa3083f0d7eccda0e9c1dbc4ad2f4.zip |
Change rtti/Rtti to RTTI, as it is an acronym.
llvm-svn: 90334
Diffstat (limited to 'clang/lib/CodeGen/CGVtable.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGVtable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CGVtable.cpp b/clang/lib/CodeGen/CGVtable.cpp index 715aa4c03c1..d7b81275460 100644 --- a/clang/lib/CodeGen/CGVtable.cpp +++ b/clang/lib/CodeGen/CGVtable.cpp @@ -147,7 +147,7 @@ public: const CXXRecordDecl *l, uint64_t lo, CodeGenModule &cgm) : methods(meth), Class(c), LayoutClass(l), LayoutOffset(lo), BLayout(cgm.getContext().getASTRecordLayout(l)), - rtti(cgm.GenerateRttiRef(c)), VMContext(cgm.getModule().getContext()), + rtti(cgm.GenerateRTTIRef(c)), VMContext(cgm.getModule().getContext()), CGM(cgm), PureVirtualFn(0),subAddressPoints(AllocAddressPoint(cgm, l, c)), Extern(!l->isInAnonymousNamespace()), LLVMPointerWidth(cgm.getContext().Target.getPointerWidth(0)) { @@ -1305,7 +1305,7 @@ llvm::Constant *CodeGenModule::GenerateVTT(const CXXRecordDecl *RD) { void CGVtableInfo::GenerateClassData(const CXXRecordDecl *RD) { Vtables[RD] = CGM.GenerateVtable(RD, RD); - CGM.GenerateRtti(RD); + CGM.GenerateRTTI(RD); CGM.GenerateVTT(RD); } @@ -1327,7 +1327,7 @@ llvm::Constant *CGVtableInfo::getVtable(const CXXRecordDecl *RD) { } if (CreateDefinition) { - CGM.GenerateRtti(RD); + CGM.GenerateRTTI(RD); CGM.GenerateVTT(RD); } return vtbl; |