llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Younan Zhang (zyn0217) <details> <summary>Changes</summary> The fix per se seems trivial (given the nature of the new built-in type), and hence I don't think we need extra tests. --- Full diff: https://github.com/llvm/llvm-project/pull/91132.diff 1 Files Affected: - (modified) lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp (+2) ``````````diff diff --git a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp index 2621f682011b41e..08d32e71c7fd32e 100644 --- a/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp +++ b/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp @@ -3983,6 +3983,7 @@ TypeSystemClang::GetMinimumLanguage(lldb::opaque_compiler_type_t type) { case clang::BuiltinType::Dependent: case clang::BuiltinType::Overload: + case clang::BuiltinType::UnresolvedTemplate: case clang::BuiltinType::BoundMember: case clang::BuiltinType::UnknownAny: break; @@ -5962,6 +5963,7 @@ uint32_t TypeSystemClang::GetNumPointeeChildren(clang::QualType type) { case clang::BuiltinType::LongDouble: case clang::BuiltinType::Dependent: case clang::BuiltinType::Overload: + case clang::BuiltinType::UnresolvedTemplate: case clang::BuiltinType::ObjCId: case clang::BuiltinType::ObjCClass: case clang::BuiltinType::ObjCSel: `````````` </details> https://github.com/llvm/llvm-project/pull/91132 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits