zig/deps/lld/test/ELF/linkerscript/non-alloc.s

24 lines
698 B
ArmAsm
Raw Normal View History

# REQUIRES: x86
2018-08-05 05:47:16 +08:00
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
# RUN: echo "SECTIONS { .foo 0 : {*(foo)} }" > %t.script
2018-08-05 05:47:16 +08:00
# RUN: ld.lld --hash-style=sysv -o %t --script %t.script %t.o -shared
2019-02-08 06:07:18 +08:00
# RUN: llvm-readelf -S -l %t | FileCheck %s
# Test that we create all necessary PT_LOAD. We use to stop at the first
# non-alloc, causing us to not create PT_LOAD for linker generated sections.
# CHECK: Program Headers:
# CHECK-NEXT: Type
# CHECK-NEXT: LOAD {{.*}} R E
# CHECK-NEXT: LOAD {{.*}} RW
# CHECK: Section to Segment mapping:
# CHECK-NEXT: Segment Sections...
2018-08-05 05:47:16 +08:00
# CHECK-NEXT: 00 .dynsym .hash .dynstr .text
# CHECK-NEXT: 01 .dynamic
nop
.section foo
.quad 0