zig/deps/lld/test/ELF/linkerscript/emit-reloc-section-names.s

23 lines
575 B
ArmAsm
Raw Normal View History

2018-01-18 06:29:21 +08:00
# REQUIRES: x86
# RUN: llvm-mc -filetype=obj -triple=x86_64-pc-linux %s -o %t.o
# RUN: echo "SECTIONS { .text.zed : { *(.text.foo) } \
# RUN: .text.qux : { *(.text.bar) } }" > %t.script
# RUN: ld.lld -T %t.script --emit-relocs %t.o -o %t
# RUN: llvm-objdump -section-headers %t | FileCheck %s
## Check we name relocation sections in according to
## their target sections names.
# CHECK: .text.zed
# CHECK: .text.qux
# CHECK: .rela.text.zed
# CHECK: .rela.text.qux
.section .text.foo,"ax"
foo:
mov $bar, %rax
.section .text.bar,"ax"
bar:
mov $foo, %rax