diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp index 8c19d5be76bcf..16ea40bd5e9bc 100644 --- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp +++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp @@ -4262,6 +4262,8 @@ TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) { case clang::Type::HLSLAttributedResource: break; + case clang::Type::HLSLInlineSpirv: + break; } // We don't know hot to display this type... return lldb::eTypeClassOther; @@ -5128,6 +5130,8 @@ lldb::Encoding TypeSystemClang::GetEncoding(lldb::opaque_compiler_type_t type, case clang::Type::HLSLAttributedResource: break; + case clang::Type::HLSLInlineSpirv: + break; } count = 0; return lldb::eEncodingInvalid; @@ -5292,6 +5296,8 @@ lldb::Format TypeSystemClang::GetFormat(lldb::opaque_compiler_type_t type) { case clang::Type::HLSLAttributedResource: break; + case clang::Type::HLSLInlineSpirv: + break; } // We don't know hot to display this type... return lldb::eFormatBytes;