summaryrefslogtreecommitdiff
path: root/test/ELF/linkerscript/start-end.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/ELF/linkerscript/start-end.s')
-rw-r--r--test/ELF/linkerscript/start-end.s16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/ELF/linkerscript/start-end.s b/test/ELF/linkerscript/start-end.s
new file mode 100644
index 0000000000000..b68606abc1811
--- /dev/null
+++ b/test/ELF/linkerscript/start-end.s
@@ -0,0 +1,16 @@
+# 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