2018-08-08 22:50:33 +08:00
|
|
|
# REQUIRES: x86
|
2018-06-25 23:27:09 +08:00
|
|
|
# RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t1
|
2018-07-03 01:48:23 +08:00
|
|
|
# RUN: ld.lld -shared -z notext %t1 -o /dev/null --icf=all --print-icf-sections 2>&1 | FileCheck -allow-empty %s
|
2018-06-25 23:27:09 +08:00
|
|
|
|
|
|
|
## ICF is able to merge sections which relocations referring regular input sections
|
|
|
|
## or mergeable sections. .eh_frame is represented with a different kind of section,
|
|
|
|
## here we check that ICF code is able to handle and will not merge sections which
|
|
|
|
## relocations referring .eh_frame.
|
|
|
|
|
|
|
|
# CHECK-NOT: selected
|
|
|
|
|
2020-02-20 13:27:13 +08:00
|
|
|
.section ".eh_frame", "a", @unwind
|
2018-06-25 23:27:09 +08:00
|
|
|
.globl foo
|
|
|
|
foo:
|
|
|
|
.quad 0
|
|
|
|
.globl bar
|
|
|
|
bar:
|
|
|
|
.quad 0
|
|
|
|
|
|
|
|
.section .text.foo, "ax"
|
|
|
|
.quad foo
|
|
|
|
|
|
|
|
.section .text.bar, "ax"
|
|
|
|
.quad bar
|