[llvm] [DWARFYAML] Implement debug_names support (PR #79666)

Felipe de Azevedo Piovezan via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 8 12:26:09 PST 2024


================
@@ -783,15 +784,15 @@ getNonZeroDataSizesFor(uint32_t AbbrevCode,
   });
   if (AbbrevIt == Abbrevs.end())
     return createStringError(inconvertibleErrorCode(),
-                             "Did not find an Abbreviation for this code");
+                             "did not find an Abbreviation for this code");
 
   SmallVector<uint8_t> DataSizes;
-  dwarf::FormParams Params{5 /*Version*/, 4 /*AddrSize*/, dwarf::DWARF32};
+  dwarf::FormParams Params{/*Version*/ 5, /*AddrSize*/ 4, dwarf::DWARF32};
----------------
felipepiovezan wrote:

Oops, fixed!

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


More information about the llvm-commits mailing list