[Lldb-commits] [lldb] Add no-op handing for HLSLAttributedResource switch cases (PR #106698)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Aug 30 02:51:14 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-lldb
Author: Danial Klimkin (dklimkin)
<details>
<summary>Changes</summary>
New value added in e00e9a3f8294c9b96cb0328bf136fab72aeec749
---
Full diff: https://github.com/llvm/llvm-project/pull/106698.diff
1 Files Affected:
- (modified) lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp (+9)
``````````diff
diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
index 695801da9da69a..b0f49ebf2d2cbb 100644
--- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -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;
``````````
</details>
https://github.com/llvm/llvm-project/pull/106698
More information about the lldb-commits
mailing list