[PATCH] D126800: Write output sections in parallel

Nico Weber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 1 16:11:09 PDT 2022


thakis added a comment.

(sorry for the churn :/)



================
Comment at: lld/MachO/Writer.cpp:1088
+    const std::vector<OutputSection *> &sections = seg->getSections();
+    osecs.insert(osecs.end(), sections.begin(), sections.end());
+  }
----------------
nit: I think we usually use the append_range helper: https://cs.github.com/llvm/llvm-project?q=append_range


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D126800/new/

https://reviews.llvm.org/D126800



More information about the llvm-commits mailing list