We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cec6fc commit c7d210bCopy full SHA for c7d210b
bolt/include/bolt/Core/DebugNames.h
@@ -67,8 +67,8 @@ class DWARF5AcceleratorTable {
67
uint32_t CompUnit : 1;
68
uint32_t TypeUnit : 1;
69
uint32_t DieOffset : 1;
70
- uint32_t Parent : 1;
71
- uint32_t TypeHash : 2;
+ uint32_t Parent : 2;
+ uint32_t TypeHash : 1;
72
uint32_t Tag : 26;
73
} Bits;
74
uint32_t Value = 0;
bolt/lib/Core/DebugNames.cpp
@@ -343,7 +343,7 @@ DWARF5AcceleratorTable::TagIndex DWARF5AcceleratorTable::getAbbrevIndex(
343
AbbrvDesc.Bits.TypeUnit = true;
344
break;
345
case dwarf::DW_IDX_parent:
346
- AbbrvDesc.Bits.Parent = true;
+ AbbrvDesc.Bits.Parent = 0;
347
348
case dwarf::DW_IDX_type_hash:
349
AbbrvDesc.Bits.TypeHash = true;
0 commit comments