[lld] [LLD][ELF] Don't spill to same memory region (PR #129795)
Peter Smith via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 5 07:40:25 PST 2025
================
@@ -563,7 +563,7 @@ LinkerScript::computeInputSections(const InputSectionDescription *cmd,
continue;
if (!cmd->matchesFile(*sec->file) || pat.excludesFile(*sec->file) ||
- sec->parent == &outCmd || !flagsMatch(sec))
+ !flagsMatch(sec))
----------------
smithp35 wrote:
Just so I understand. These changes are not required for the fix, but they are no longer necessary because of the changes to `spillSections()`
https://github.com/llvm/llvm-project/pull/129795
More information about the llvm-commits
mailing list