diff options
author | Enrico Granata <egranata@apple.com> | 2013-10-30 00:04:29 +0000 |
---|---|---|
committer | Enrico Granata <egranata@apple.com> | 2013-10-30 00:04:29 +0000 |
commit | 38c546320c41359278c954efa3e1719b2e12505c (patch) | |
tree | 8219a471056f25748c5cccd998b323929d44bbde /lldb/source/Core | |
parent | 5fbce5bd56bd58d221b4224a02377774f943515c (diff) | |
download | bcm5719-llvm-38c546320c41359278c954efa3e1719b2e12505c.tar.gz bcm5719-llvm-38c546320c41359278c954efa3e1719b2e12505c.zip |
<rdar://problem/15045059>
One of the things that dynamic typing affects is the count of children a type has
Clear out the flag that makes us blindly believe the children count when a dynamic type change is detected
llvm-svn: 193663
Diffstat (limited to 'lldb/source/Core')
-rw-r--r-- | lldb/source/Core/ValueObject.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp index e1f3b8a6470..c9df4f2b228 100644 --- a/lldb/source/Core/ValueObject.cpp +++ b/lldb/source/Core/ValueObject.cpp @@ -272,6 +272,7 @@ ValueObject::SetNeedsUpdate () void ValueObject::ClearDynamicTypeInformation () { + m_children_count_valid = false; m_did_calculate_complete_objc_class_type = false; m_last_format_mgr_revision = 0; m_override_type = ClangASTType(); |