diff options
author | Anders Carlsson <andersca@mac.com> | 2010-04-17 20:15:18 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-04-17 20:15:18 +0000 |
commit | 11e5140db94dc3f27108f313135d0664d3ccd421 (patch) | |
tree | d7ffb9d37d80771f7433ea6e171b1d3bd5421bef /clang/lib/CodeGen/CodeGenModule.h | |
parent | 13bca6cd5a6b5e989a469ec1687b42a5c7008895 (diff) | |
download | bcm5719-llvm-11e5140db94dc3f27108f313135d0664d3ccd421.tar.gz bcm5719-llvm-11e5140db94dc3f27108f313135d0664d3ccd421.zip |
Vtable -> VTable renames across the board.
llvm-svn: 101666
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r-- | clang/lib/CodeGen/CodeGenModule.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h index e06e53335cd..8db5a588d07 100644 --- a/clang/lib/CodeGen/CodeGenModule.h +++ b/clang/lib/CodeGen/CodeGenModule.h @@ -417,16 +417,16 @@ public: llvm::GlobalVariable::LinkageTypes getFunctionLinkage(const FunctionDecl *FD); - /// getVtableLinkage - Return the appropriate linkage for the vtable, VTT, + /// getVTableLinkage - Return the appropriate linkage for the vtable, VTT, /// and type information of the given class. static llvm::GlobalVariable::LinkageTypes - getVtableLinkage(const CXXRecordDecl *RD); + getVTableLinkage(const CXXRecordDecl *RD); /// GetTargetTypeStoreSize - Return the store size, in character units, of /// the given LLVM type. CharUnits GetTargetTypeStoreSize(const llvm::Type *Ty) const; - std::vector<const CXXRecordDecl*> DeferredVtables; + std::vector<const CXXRecordDecl*> DeferredVTables; private: llvm::GlobalValue *GetGlobalValue(llvm::StringRef Ref); |