[PATCH] D100818: [lld-macho] Implement branch-range-extension thunks

Thorsten via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Apr 30 02:22:59 PDT 2021


tschuett added inline comments.


================
Comment at: lld/MachO/MergedOutputSection.cpp:149
+  // Kick-off by ensuring that the first input section has an address
+  finalizeOne(inputs[ix++]);
+  for (; ic < ie; ic++) {
----------------
LLVM prefers preincrement:
https://llvm.org/docs/CodingStandards.html#prefer-preincrement

There a couple of postincrements.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D100818



More information about the llvm-commits mailing list