Files
clang-p2996/lld/test/ELF/linkorder-forward-ref.test
Peter Collingbourne cb2d8e9125 ELF: Allow forward references to linked sections.
It's possible to create IR that uses !associated to refer to a global that
appears later in the module, which can result in these types of forward
references being generated. Unfortunately our assembler does not currently
accept the resulting .s so I needed to use yaml2obj to test this.

Differential Revision: https://reviews.llvm.org/D64880

llvm-svn: 366460
2019-07-18 16:47:29 +00:00

24 lines
523 B
Plaintext

# REQUIRES: x86
# RUN: yaml2obj %s -o %t.o
# RUN: ld.lld %t.o -o %t
# RUN: llvm-readelf -S %t | FileCheck %s
## Test that we accept forward sh_link references.
# CHECK: .linkorder
# CHECK: .text
--- !ELF
FileHeader:
Class: ELFCLASS64
Data: ELFDATA2LSB
Type: ET_REL
Machine: EM_X86_64
Sections:
- Name: .linkorder
Type: SHT_PROGBITS
Flags: [ SHF_LINK_ORDER ]
Link: 2
- Name: .text
Type: SHT_PROGBITS