Files
clang-p2996/lld/test/ELF/linkerscript/start-end.s
Rui Ueyama 66ba9f08b9 Remove useless file prefix.
Differential Revision: https://reviews.llvm.org/D24207

llvm-svn: 280540
2016-09-02 20:40:53 +00:00

17 lines
381 B
ArmAsm

# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
# RUN: echo "SECTIONS { \
# RUN: .init_array : { \
# RUN: __init_array_start = .; \
# RUN: *(.init_array) \
# RUN: __init_array_end = .; } }" > %t.script
# RUN: ld.lld %t.o -script %t.script -o %t 2>&1
.globl _start
.text
_start:
nop
.section .init_array, "aw"
.quad 0