diff options
author | Pavel Labath <labath@google.com> | 2015-06-08 23:38:06 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2015-06-08 23:38:06 +0000 |
commit | c7c30eb52832dc20a7afe6640ac4ab361ff9b9fe (patch) | |
tree | f92b605a516615b447eefa8d9d21381cfc113b70 /lldb/source/Core/ValueObjectDynamicValue.cpp | |
parent | 4e8e900dd1f21b5b5458affd5d6c2c89f07fdd28 (diff) | |
download | bcm5719-llvm-c7c30eb52832dc20a7afe6640ac4ab361ff9b9fe.tar.gz bcm5719-llvm-c7c30eb52832dc20a7afe6640ac4ab361ff9b9fe.zip |
Revert "Introduce a TypeSystem interface to support adding non-clang languages."
This seems to break expression evaluation on the linux build.
llvm-svn: 239366
Diffstat (limited to 'lldb/source/Core/ValueObjectDynamicValue.cpp')
-rw-r--r-- | lldb/source/Core/ValueObjectDynamicValue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Core/ValueObjectDynamicValue.cpp b/lldb/source/Core/ValueObjectDynamicValue.cpp index 9eaa6c3756d..89b98a1db1b 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 = ClangASTContext::GetLValueReferenceType(orig_type); + corrected_type = orig_type.GetLValueReferenceType (); ret.SetClangASTType(corrected_type); } else /*if (m_dynamic_type_info.HasName())*/ |