[Lldb-commits] [lldb] [lldb][TypeSystem] Better support for _BitInt types (PR #165689)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 31 02:15:20 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;
----------------
Michael137 wrote:

Can't make this one const cause it's modified conditionally few lines down

https://github.com/llvm/llvm-project/pull/165689


More information about the lldb-commits mailing list