forked from OSchip/llvm-project
parent
abf7ebec3d
commit
5cb712ed3c
|
@ -339,11 +339,7 @@ template <class ELFT> void ICF<ELFT>::run() {
|
|||
// the same color are consecutive in the vector.
|
||||
std::stable_sort(Sections.begin(), Sections.end(),
|
||||
[](InputSection<ELFT> *A, InputSection<ELFT> *B) {
|
||||
if (A->Color[0] != B->Color[0])
|
||||
return A->Color[0] < B->Color[0];
|
||||
// Within a group, put the highest alignment
|
||||
// requirement first, so that's the one we'll keep.
|
||||
return B->Alignment < A->Alignment;
|
||||
return A->Color[0] < B->Color[0];
|
||||
});
|
||||
|
||||
// Compare static contents and assign unique IDs for each static content.
|
||||
|
|
|
@ -622,7 +622,7 @@ template <class ELFT> void InputSection<ELFT>::writeTo(uint8_t *Buf) {
|
|||
|
||||
template <class ELFT>
|
||||
void InputSection<ELFT>::replace(InputSection<ELFT> *Other) {
|
||||
assert(Other->Alignment <= this->Alignment);
|
||||
this->Alignment = std::max(this->Alignment, Other->Alignment);
|
||||
Other->Repl = this->Repl;
|
||||
Other->Live = false;
|
||||
}
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
# RUN: ld.lld %t -o %t2 --icf=all --verbose | FileCheck %s
|
||||
# RUN: llvm-objdump -t %t2 | FileCheck -check-prefix=ALIGN %s
|
||||
|
||||
# CHECK: selected .text.f2
|
||||
# CHECK: removed .text.f1
|
||||
# CHECK: selected .text.f1
|
||||
# CHECK: removed .text.f2
|
||||
|
||||
# ALIGN: 0000000000201000 .text 00000000 _start
|
||||
# ALIGN: 0000000000201100 .text 00000000 f1
|
||||
|
|
Loading…
Reference in New Issue