Files
clang-p2996/lld/test/ELF/comdat-discarded-ppc32.s
Fangrui Song 315f8a55f5 [ELF][PPC32] Don't report "relocation refers to a discarded section" for .got2
Similar to D63182 [ELF][PPC64] Don't report "relocation refers to a discarded section" for .toc

Reviewed By: Bdragon28

Differential Revision: https://reviews.llvm.org/D75419
2020-03-01 19:54:40 -08:00

22 lines
663 B
ArmAsm

# REQUIRES: ppc
# RUN: llvm-mc -filetype=obj -triple=powerpc %s -o %t.o
# RUN: ld.lld %t.o %t.o -o /dev/null
# RUN: ld.lld -r --fatal-warnings %t.o %t.o -o /dev/null
## Similar to PPC64, clang/gcc PPC32 may emit a .rela.got2 which references a local symbol
## defined in a discarded .rodata section. Unfortunately, .got2 cannot be placed in a comdat
## because for lwz 3, .LC0-.LTOC(30), we cannot define .LC0 in a different .got2 section.
## Don't error "relocation refers to a discarded section".
.section .text.foo,"axG",@progbits,foo,comdat
.globl foo
foo:
lwz 3, .LC0-.LTOC(30)
.L0:
.section .got2,"aw",@progbits
.set .LTOC, .got2+32768
.LC0:
.long .L0