Add cases for new type DependentAddressSpace, added in r314649

llvm-svn: 315524
This commit is contained in:
Ted Woodward 2017-10-11 22:42:21 +00:00
parent c3beb6a075
commit 66060cf1f9
1 changed files with 9 additions and 0 deletions

View File

@ -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;