[Lldb-commits] [lldb] [lldb][TypeSystem] Better support for _BitInt types (PR #165689)
Alex Langford via lldb-commits
lldb-commits at lists.llvm.org
Thu Oct 30 10:51:23 PDT 2025
================
@@ -3893,6 +3897,13 @@ TypeSystemClang::GetTypeInfo(lldb::opaque_compiler_type_t type,
->getModifiedType()
.getAsOpaquePtr(),
pointee_or_element_clang_type);
+ case clang::Type::BitInt: {
+ uint32_t type_flags = eTypeIsScalar | eTypeIsInteger | eTypeHasValue;
----------------
bulbazord wrote:
Suggestion: `const`
https://github.com/llvm/llvm-project/pull/165689
More information about the lldb-commits
mailing list