From 66060cf1f928cb8ca31a239f53d90ad4621bbfd2 Mon Sep 17 00:00:00 2001 From: Ted Woodward Date: Wed, 11 Oct 2017 22:42:21 +0000 Subject: [PATCH] Add cases for new type DependentAddressSpace, added in r314649 llvm-svn: 315524 --- lldb/source/Symbol/ClangASTContext.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lldb/source/Symbol/ClangASTContext.cpp b/lldb/source/Symbol/ClangASTContext.cpp index 9da01b482147..86f1055f93b5 100644 --- a/lldb/source/Symbol/ClangASTContext.cpp +++ b/lldb/source/Symbol/ClangASTContext.cpp @@ -4351,6 +4351,9 @@ ClangASTContext::GetTypeClass(lldb::opaque_compiler_type_t type) { break; case clang::Type::ObjCTypeParam: break; + + case clang::Type::DependentAddressSpace: + break; } // We don't know hot to display this type... return lldb::eTypeClassOther; @@ -5161,6 +5164,9 @@ lldb::Encoding ClangASTContext::GetEncoding(lldb::opaque_compiler_type_t type, break; case clang::Type::ObjCTypeParam: break; + + case clang::Type::DependentAddressSpace: + break; } count = 0; return lldb::eEncodingInvalid; @@ -5311,6 +5317,9 @@ lldb::Format ClangASTContext::GetFormat(lldb::opaque_compiler_type_t type) { break; case clang::Type::ObjCTypeParam: break; + + case clang::Type::DependentAddressSpace: + break; } // We don't know hot to display this type... return lldb::eFormatBytes;