[lld] [lld][BP] Avoid ordering ICF'ed sections (PR #126327)
Kyungwoo Lee via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 8 08:00:13 PST 2025
================
@@ -117,6 +117,8 @@ DenseMap<const InputSection *, int> lld::macho::runBalancedPartitioning(
auto *isec = subsec.isec;
if (!isec || isec->data.empty())
continue;
+ if (isa<ConcatInputSection>(isec) && !isec->isLive(0))
----------------
kyulee-com wrote:
If the first offset, 0, is dead, is it guaranteed that other offsets are also dead? This might be the case for code, but I'm not sure about data.
https://github.com/llvm/llvm-project/pull/126327
More information about the llvm-commits
mailing list