31 lines · plain
1# REQUIRES: ppc2 3# RUN: llvm-mc -filetype=obj -triple=ppc64le %s -o %t.o4# RUN: ld.lld %t.o -z separate-code -o %t5# RUN: llvm-nm %t | FileCheck %s6 7# CHECK-DAG: 0000000010010000 t __long_branch_callee8# CHECK-DAG: 0000000010010020 T _start9# CHECK-DAG: 0000000012010018 T callee10 11# The bl instruction jumps to the local entry. The distance requires a long branch stub:12# localentry(callee) - _start = 0x12010008+8 - 0x10010010 = 0x200000013 14# We used to compute globalentry(callee) - _start and caused a "R_PPC64_REL2415# out of range" error because we didn't create the stub.16 17.globl _start18_start:19 bl callee20 21.space 0x1fffff422 23.globl callee24callee:25.Lgep0:26 addis 2, 12, .TOC.-.Lgep0@ha27 addi 2, 2, .TOC.-.Lgep0@l28.Llep0:29 .localentry callee, .Llep0-.Lgep030 blr31