[llvm] [llvm-dwarfdump] Make --verify for .debug_names multithreaded. (PR #127281)

Jacob Lalonde via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 6 09:08:56 PST 2025


================
@@ -793,6 +794,14 @@ class DWARFDebugNames : public DWARFAcceleratorTable {
       next();
       return I;
     }
+    reference operator[](size_type idx) {
+      return CurrentIndex->getNameTableEntry(idx + 1);
+    }
+
+    difference_type operator-(const NameIterator &other) const {
----------------
Jlalond wrote:

Can we get some comments on context on the new operators? I don't see where they are used elsewhere in this patch.

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


More information about the llvm-commits mailing list