Skip to content

Commit cd7cb1f

Browse files
committed
Update lldb for rG10658691951f to avoid Werror messages around
new unhandled matrix types.
1 parent 379e68a commit cd7cb1f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4061,6 +4061,11 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) {
40614061
break;
40624062
case clang::Type::MacroQualified:
40634063
break;
4064+
4065+
// Matrix types that we're not sure how to display at the moment.
4066+
case clang::Type::ConstantMatrix:
4067+
case clang::Type::DependentSizedMatrix:
4068+
break;
40644069
}
40654070
// We don't know hot to display this type...
40664071
return lldb::eTypeClassOther;
@@ -4878,6 +4883,10 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
48784883
break;
48794884
case clang::Type::MacroQualified:
48804885
break;
4886+
4887+
case clang::Type::ConstantMatrix:
4888+
case clang::Type::DependentSizedMatrix:
4889+
break;
48814890
}
48824891
count = 0;
48834892
return lldb::eEncodingInvalid;
@@ -5024,6 +5033,11 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) {
50245033
break;
50255034
case clang::Type::MacroQualified:
50265035
break;
5036+
5037+
// Matrix types we're not sure how to display yet.
5038+
case clang::Type::ConstantMatrix:
5039+
case clang::Type::DependentSizedMatrix:
5040+
break;
50275041
}
50285042
// We don't know hot to display this type...
50295043
return lldb::eFormatBytes;

0 commit comments

Comments
 (0)