[PATCH] D27851: [DWARF] - Introduce DWARFDebugPubTable class for dumping pub* sections.

David Blaikie via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Dec 16 07:52:28 PST 2016


dblaikie accepted this revision.
dblaikie added inline comments.
This revision is now accepted and ready to land.


================
Comment at: include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h:73-74
+
+  entry_iterator_range entries() const {
+    return entry_iterator_range(Sets.begin(), Sets.end());
+  }
----------------
Probably no need to worry about using a separate range type here - just return a const ref to 'Sets' directly?


https://reviews.llvm.org/D27851





More information about the llvm-commits mailing list