llvm-project/lld/test/ELF/init-fini-progbits.s
Fangrui Song 43753f8f9d [ELF] Remove irrelevant SHT_INIT_ARRAY/SHT_FINI_ARRAY hack
The hack is irrelevant for two reasons:

* binutils 2.24 is quite old and cannot handle R_X86_64_REX_GOTPCRELX from 2016 onwards anyway
* `canMergeToProgbits` allows combining SHT_INIT_ARRAY/SHT_FINI_ARRAY into SHT_PROGBITS
2021-10-25 14:23:05 -07:00

20 lines
437 B
ArmAsm

// REQUIRES: x86
// RUN: llvm-mc -filetype=obj -triple=x86_64-unknown-linux %s -o %t
// RUN: ld.lld %t -o %t.exe
// RUN: llvm-readobj --sections %t.exe | FileCheck %s
// CHECK: Name: .init_array
// CHECK-NEXT: Type: SHT_PROGBITS
// CHECK: Name: .fini_array
// CHECK-NEXT: Type: SHT_PROGBITS
.globl _start
_start:
nop
.section .init_array.100, "aw", @progbits
.byte 0
.section .fini_array.100, "aw", @progbits
.byte 0