repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[llvm] Do not replace dead constant references in metadata with undef
[llvm-project.git]
/
lld
/
test
/
ELF
/
linkerscript
/
start-end.test
blob
ab7504dac2d43d07de7e1f995a891c5f0adb0c35
1
# REQUIRES: x86
2
# RUN: echo '.section .init_array, "aw"; .quad 0' \
3
# RUN: | llvm-mc -filetype=obj -triple=x86_64-unknown-linux - -o %t.o
4
# RUN: ld.lld %t.o -script %s -o %t 2>&1
5
6
SECTIONS {
7
.init_array : {
8
__init_array_start = .;
9
*(.init_array)
10
__init_array_end = .;
11
}
12
}