summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/ValueObjectDynamicValue.cpp
diff options
context:
space:
mode:
authorPavel Labath <labath@google.com>2015-06-08 22:27:10 +0000
committerPavel Labath <labath@google.com>2015-06-08 22:27:10 +0000
commitc33ae024a64962cb38b64073a035a5fc36aa2214 (patch)
tree4fff2e0f0c816610b412c932fbbb0a6b54ac861c /lldb/source/Core/ValueObjectDynamicValue.cpp
parente6eea5d055d06db7aefdfa879ae052a2d34ab464 (diff)
downloadbcm5719-llvm-c33ae024a64962cb38b64073a035a5fc36aa2214.tar.gz
bcm5719-llvm-c33ae024a64962cb38b64073a035a5fc36aa2214.zip
Introduce a TypeSystem interface to support adding non-clang languages.
Reviewers: clayborg Reviewed By: clayborg Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D8712 Original Author: Ryan Brown <ribrdb@google.com> llvm-svn: 239360
Diffstat (limited to 'lldb/source/Core/ValueObjectDynamicValue.cpp')
-rw-r--r--lldb/source/Core/ValueObjectDynamicValue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectDynamicValue.cpp b/lldb/source/Core/ValueObjectDynamicValue.cpp
index 89b98a1db1b..9eaa6c3756d 100644
--- a/lldb/source/Core/ValueObjectDynamicValue.cpp
+++ b/lldb/source/Core/ValueObjectDynamicValue.cpp
@@ -154,7 +154,7 @@ FixupTypeAndOrName (const TypeAndOrName& type_andor_name,
if (parent.IsPointerType())
corrected_type = orig_type.GetPointerType ();
else if (parent.IsPointerOrReferenceType())
- corrected_type = orig_type.GetLValueReferenceType ();
+ corrected_type = ClangASTContext::GetLValueReferenceType(orig_type);
ret.SetClangASTType(corrected_type);
}
else /*if (m_dynamic_type_info.HasName())*/
OpenPOWER on IntegriCloud