[clang] [llvm] [DebugInfo] Emit DW_AT_bit_size for _BitInt types and others (PR #164372)

Michael Buch via cfe-commits cfe-commits at lists.llvm.org
Wed Oct 29 04:45:10 PDT 2025


================
@@ -1540,13 +1540,13 @@ Error MetadataLoader::MetadataLoaderImpl::parseOneMetadata(
                                 ? static_cast<DINode::DIFlags>(Record[6])
                                 : DINode::FlagZero;
     uint32_t NumExtraInhabitants = (Record.size() > 7) ? Record[7] : 0;
-
+    uint32_t DataSizeInBits = (Record.size() > 8) ? Record[8] : 0;
----------------
Michael137 wrote:

Sounds good!

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


More information about the cfe-commits mailing list