summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/ValueObject.cpp
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2011-05-02 18:13:59 +0000
committerJim Ingham <jingham@apple.com>2011-05-02 18:13:59 +0000
commit61be0903e5fb48d063fa64024f78f1f30cc446ad (patch)
tree1d2d3252ffcf29ae6ecb2fb0d8cae7bb07ea8bca /lldb/source/Core/ValueObject.cpp
parentf4258eb48420fb1e80250a9f589f1bb2225462e1 (diff)
downloadbcm5719-llvm-61be0903e5fb48d063fa64024f78f1f30cc446ad.tar.gz
bcm5719-llvm-61be0903e5fb48d063fa64024f78f1f30cc446ad.zip
Adding support for fetching the Dynamic Value for ObjC Objects.
llvm-svn: 130701
Diffstat (limited to 'lldb/source/Core/ValueObject.cpp')
-rw-r--r--lldb/source/Core/ValueObject.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/lldb/source/Core/ValueObject.cpp b/lldb/source/Core/ValueObject.cpp
index 1f443e81502..521d3eb5880 100644
--- a/lldb/source/Core/ValueObject.cpp
+++ b/lldb/source/Core/ValueObject.cpp
@@ -1644,6 +1644,16 @@ ValueObject::EvaluationPoint::SyncWithProcessState()
return true;
}
+void
+ValueObject::EvaluationPoint::SetUpdated ()
+{
+ m_first_update = false;
+ m_needs_update = false;
+ if (m_process_sp)
+ m_stop_id = m_process_sp->GetStopID();
+}
+
+
bool
ValueObject::EvaluationPoint::SetContext (ExecutionContextScope *exe_scope)
{
OpenPOWER on IntegriCloud