[PATCH] D103977: [lld-macho][nfc] Move liveness-tracking fields into ConcatInputSection

Nico Weber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 10 05:37:27 PDT 2021


thakis added inline comments.


================
Comment at: lld/MachO/MarkLive.cpp:165
     for (InputSection *isec : inputSections) {
+      if (!isa<ConcatInputSection>(isec))
+        continue;
----------------
Is that correct? Imagine a S_ATTR_LIVE_SUPPORT symbol pointing to a live literal.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D103977



More information about the llvm-commits mailing list