[llvm] [LLVM][DWARF] Add support for monolithic types in .debug_names (PR #70515)

David Blaikie via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 30 13:58:00 PDT 2023


================
@@ -47,6 +48,14 @@ struct RangeSpanList {
   SmallVector<RangeSpan, 2> Ranges;
 };
 
+struct TypeUnitMetaInfo {
+  TypeUnitMetaInfo(MCSymbol *L, unsigned ID) : Label(L), UniqueID(ID) {}
----------------
dwblaikie wrote:

Could probably skip the ctor and rely on braced init

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


More information about the llvm-commits mailing list