From c727fe695d28799acb499e9961f11ec07d4f9fe2 Mon Sep 17 00:00:00 2001 From: emaste Date: Wed, 6 Nov 2013 16:48:53 +0000 Subject: Import lldb as of SVN r194122 Sponsored by: DARPA, AFRL --- source/Core/ValueObjectVariable.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source/Core/ValueObjectVariable.cpp') diff --git a/source/Core/ValueObjectVariable.cpp b/source/Core/ValueObjectVariable.cpp index 38c0d91..3d8b07a 100644 --- a/source/Core/ValueObjectVariable.cpp +++ b/source/Core/ValueObjectVariable.cpp @@ -156,6 +156,10 @@ ValueObjectVariable::UpdateValue () { m_resolved_value = m_value; m_value.SetContext(Value::eContextTypeVariable, variable); + + ClangASTType clang_type = GetClangType(); + if (clang_type.IsValid()) + m_value.SetClangType(clang_type); Value::ValueType value_type = m_value.GetValueType(); -- cgit v1.1