diff options
| author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-21 16:48:48 +0000 |
|---|---|---|
| committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2015-09-21 16:48:48 +0000 |
| commit | 4ad833400f6bd31ab336dba247eaa1659b520921 (patch) | |
| tree | 0032a8f21a53e1cdc665c03abe3d22df5829d2b0 /lldb/source/Core/ValueObjectConstResultImpl.cpp | |
| parent | e46da3849afb727ff5b1a2b3fe984bf919b397c1 (diff) | |
| download | bcm5719-llvm-4ad833400f6bd31ab336dba247eaa1659b520921.tar.gz bcm5719-llvm-4ad833400f6bd31ab336dba247eaa1659b520921.zip | |
Rename GetChildClangTypeAtIndex to GetChildCompilerTypeAtIndex
Reviewers: clayborg
Subscribers: lldb-commits
Differential Revision: http://reviews.llvm.org/D13020
llvm-svn: 248175
Diffstat (limited to 'lldb/source/Core/ValueObjectConstResultImpl.cpp')
| -rw-r--r-- | lldb/source/Core/ValueObjectConstResultImpl.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/lldb/source/Core/ValueObjectConstResultImpl.cpp b/lldb/source/Core/ValueObjectConstResultImpl.cpp index 92b0ec20429..531b0f85cc9 100644 --- a/lldb/source/Core/ValueObjectConstResultImpl.cpp +++ b/lldb/source/Core/ValueObjectConstResultImpl.cpp @@ -72,24 +72,24 @@ ValueObjectConstResultImpl::CreateChildAtIndex (size_t idx, bool synthetic_array const bool transparent_pointers = synthetic_array_member == false; CompilerType clang_type = m_impl_backend->GetCompilerType(); - CompilerType child_clang_type; + CompilerType child_compiler_type; ExecutionContext exe_ctx (m_impl_backend->GetExecutionContextRef()); - child_clang_type = clang_type.GetChildClangTypeAtIndex (&exe_ctx, - idx, - transparent_pointers, - omit_empty_base_classes, - ignore_array_bounds, - child_name_str, - child_byte_size, - child_byte_offset, - child_bitfield_bit_size, - child_bitfield_bit_offset, - child_is_base_class, - child_is_deref_of_parent, - m_impl_backend); - if (child_clang_type && child_byte_size) + child_compiler_type = clang_type.GetChildCompilerTypeAtIndex (&exe_ctx, + idx, + transparent_pointers, + omit_empty_base_classes, + ignore_array_bounds, + child_name_str, + child_byte_size, + child_byte_offset, + child_bitfield_bit_size, + child_bitfield_bit_offset, + child_is_base_class, + child_is_deref_of_parent, + m_impl_backend); + if (child_compiler_type && child_byte_size) { if (synthetic_index) child_byte_offset += child_byte_size * synthetic_index; @@ -99,7 +99,7 @@ ValueObjectConstResultImpl::CreateChildAtIndex (size_t idx, bool synthetic_array child_name.SetCString (child_name_str.c_str()); valobj = new ValueObjectConstResultChild (*m_impl_backend, - child_clang_type, + child_compiler_type, child_name, child_byte_size, child_byte_offset, |

