summaryrefslogtreecommitdiffstats
path: root/lldb/source/Plugins
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-11-29 13:43:23 +0100
committerRaphael Isemann <teemperor@gmail.com>2019-11-29 13:57:02 +0100
commitc214c92f3be7c15abc458f23c7be05a5790e6aed (patch)
treec935b70a7b999a651f0cd5fd8227d19fca5d008e /lldb/source/Plugins
parentbc7f1df6b61a3c8f88f2541ef9ba73f4ee0ee4fe (diff)
downloadbcm5719-llvm-c214c92f3be7c15abc458f23c7be05a5790e6aed.tar.gz
bcm5719-llvm-c214c92f3be7c15abc458f23c7be05a5790e6aed.zip
[lldb][NFC] Remove ClangASTContext::GetBuiltinTypeForEncodingAndBitSize overload
Diffstat (limited to 'lldb/source/Plugins')
-rw-r--r--lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
index b33547529de..22966e8023d 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
@@ -1762,8 +1762,8 @@ void ClangExpressionDeclMap::AddOneRegister(NameSearchContext &context,
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_EXPRESSIONS));
CompilerType clang_type =
- ClangASTContext::GetBuiltinTypeForEncodingAndBitSize(
- m_ast_context, reg_info->encoding, reg_info->byte_size * 8);
+ m_clang_ast_context->GetBuiltinTypeForEncodingAndBitSize(
+ reg_info->encoding, reg_info->byte_size * 8);
if (!clang_type) {
LLDB_LOGF(log, " Tried to add a type for %s, but couldn't get one",
OpenPOWER on IntegriCloud