12 lines · plain
1// REQUIRES: x862// RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o3// RUN: ld.lld %t.o -o /dev/null -shared4// Allow user defined __init_array_start. This is used by musl because of the5// the bfd linker not handling these properly. We always create them as6// hidden, musl should not have problems with lld.7 8 .hidden __init_array_start9 .globl __init_array_start10__init_array_start:11 .zero 812