diff options
author | Anders Carlsson <andersca@mac.com> | 2010-11-21 23:59:45 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-11-21 23:59:45 +0000 |
commit | a7dd96ce776d45f76a0fc0ae726f169591c9eafe (patch) | |
tree | a2834ff083bf96da18c30802072717e9cc6739d9 /clang/lib/CodeGen/CGRecordLayoutBuilder.cpp | |
parent | e64fbe2a6ca6d79a5de3e1f2bc5e95cd649b3b65 (diff) | |
download | bcm5719-llvm-a7dd96ce776d45f76a0fc0ae726f169591c9eafe.tar.gz bcm5719-llvm-a7dd96ce776d45f76a0fc0ae726f169591c9eafe.zip |
Rename BaseLLVMType to NonVirtualBaseLLVMType.
llvm-svn: 119956
Diffstat (limited to 'clang/lib/CodeGen/CGRecordLayoutBuilder.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGRecordLayoutBuilder.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp b/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp index 001c3445102..0d9c6d49642 100644 --- a/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp +++ b/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp @@ -832,8 +832,8 @@ CGRecordLayout *CodeGenTypes::ComputeRecordLayout(const RecordDecl *D) { void CGRecordLayout::print(llvm::raw_ostream &OS) const { OS << "<CGRecordLayout\n"; OS << " LLVMType:" << *LLVMType << "\n"; - if (BaseLLVMType) - OS << " BaseLLVMType:" << *BaseLLVMType << "\n"; + if (NonVirtualBaseLLVMType) + OS << " NonVirtualBaseLLVMType:" << *NonVirtualBaseLLVMType << "\n"; OS << " IsZeroInitializable:" << IsZeroInitializable << "\n"; OS << " BitFields:[\n"; |