mirror of
https://github.com/intel/llvm.git
synced 2026-01-16 05:32:28 +08:00
Add no-op handing for HLSLAttributedResource switch cases (#106698)
New value added in e00e9a3f82
This commit is contained in:
@@ -4241,6 +4241,9 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) {
|
||||
// We don't handle pack indexing yet
|
||||
case clang::Type::PackIndexing:
|
||||
break;
|
||||
|
||||
case clang::Type::HLSLAttributedResource:
|
||||
break;
|
||||
}
|
||||
// We don't know hot to display this type...
|
||||
return lldb::eTypeClassOther;
|
||||
@@ -5148,6 +5151,9 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type,
|
||||
// We don't handle pack indexing yet
|
||||
case clang::Type::PackIndexing:
|
||||
break;
|
||||
|
||||
case clang::Type::HLSLAttributedResource:
|
||||
break;
|
||||
}
|
||||
count = 0;
|
||||
return lldb::eEncodingInvalid;
|
||||
@@ -5309,6 +5315,9 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) {
|
||||
// We don't handle pack indexing yet
|
||||
case clang::Type::PackIndexing:
|
||||
break;
|
||||
|
||||
case clang::Type::HLSLAttributedResource:
|
||||
break;
|
||||
}
|
||||
// We don't know hot to display this type...
|
||||
return lldb::eFormatBytes;
|
||||
|
||||
Reference in New Issue
Block a user