diff options
author | Greg Clayton <gclayton@apple.com> | 2011-01-21 01:59:00 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-01-21 01:59:00 +0000 |
commit | e221f82b40a66721f08678929ecaeddc1825ecaa (patch) | |
tree | fe5f4e72734dbdcd8736ff0ee9bdb1f6d5a7e77a /lldb/source/Core/ValueObjectChild.cpp | |
parent | 39b12c059dba3dcaf0315a382cc8f8948e77f90a (diff) | |
download | bcm5719-llvm-e221f82b40a66721f08678929ecaeddc1825ecaa.tar.gz bcm5719-llvm-e221f82b40a66721f08678929ecaeddc1825ecaa.zip |
Fixed up the SBValue::GetExpressionPath() to be more correct under more
circumstances.
llvm-svn: 123957
Diffstat (limited to 'lldb/source/Core/ValueObjectChild.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectChild.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/source/Core/ValueObjectChild.cpp b/lldb/source/Core/ValueObjectChild.cpp index 09bae2fb314..bf896abe9ba 100644 --- a/lldb/source/Core/ValueObjectChild.cpp +++ b/lldb/source/Core/ValueObjectChild.cpp @@ -34,7 +34,8 @@ ValueObjectChild::ValueObjectChild int32_t byte_offset, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, - bool is_base_class + bool is_base_class, + bool is_deref_of_parent ) : ValueObject (parent), m_clang_ast (clang_ast), @@ -43,7 +44,8 @@ ValueObjectChild::ValueObjectChild m_byte_offset (byte_offset), m_bitfield_bit_size (bitfield_bit_size), m_bitfield_bit_offset (bitfield_bit_offset), - m_is_base_class (is_base_class) + m_is_base_class (is_base_class), + m_is_deref_of_parent (is_deref_of_parent) { m_name = name; } |