[PATCH] D126800: Write output sections in parallel
Nico Weber via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 1 16:12:28 PDT 2022
thakis added inline comments.
================
Comment at: lld/MachO/Writer.cpp:1088
+ const std::vector<OutputSection *> §ions = seg->getSections();
+ osecs.insert(osecs.end(), sections.begin(), sections.end());
+ }
----------------
thakis wrote:
> nit: I think we usually use the append_range helper: https://cs.github.com/llvm/llvm-project?q=append_range
Actually, let me just fix this up while landing this.
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