forked from OSchip/llvm-project
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
# Source for input file: reloc-xb.x86
|
|
# xb.S:
|
|
# .section .text, "ax", @progbits
|
|
# .align 0x4
|
|
# .globl _start
|
|
# _start:
|
|
# .globl back
|
|
# back:
|
|
# call target
|
|
#
|
|
# Source for input file: reloc-xt.x86
|
|
# xt.S:
|
|
# .section .text, "ax", @progbits
|
|
#
|
|
# .globl target
|
|
# target:
|
|
# call back
|
|
#
|
|
# Assembled with: "as --32"
|
|
|
|
RUN: lld-core -reader ELF -arch=i386 %p/Inputs/reloc-xb.x86 %p/Inputs/reloc-xt.x86 | FileCheck %s -check-prefix x86-yaml
|
|
|
|
x86-yaml: - name: back
|
|
x86-yaml: scope: global
|
|
x86-yaml: type: code
|
|
x86-yaml: section-name: .text
|
|
x86-yaml: content: [ E8, FC, FF, FF, FF ]
|
|
x86-yaml: fixups:
|
|
x86-yaml: - offset: 1
|
|
x86-yaml: kind: call32
|
|
x86-yaml: target: target
|
|
|
|
x86-yaml: - name: target
|
|
x86-yaml: scope: global
|
|
x86-yaml: type: code
|
|
x86-yaml: section-name: .text
|
|
x86-yaml: content: [ E8, FC, FF, FF, FF ]
|
|
x86-yaml: fixups:
|
|
x86-yaml: - offset: 1
|
|
x86-yaml: kind: call32
|
|
x86-yaml: target: back
|
|
|