17 lines · plain
1// REQUIRES: arm2// RUN: llvm-mc -filetype=obj -triple=thumbv7a-windows-gnu %s -o %t.obj3// RUN: env LLD_IN_TEST=1 not lld-link -entry:_start -subsystem:console %t.obj -out:%t.exe 2>&1 | FileCheck %s4 .syntax unified5 .globl _start6_start:7 bne too_far208 .space 0x1000009 .section .text$a, "xr"10too_far20:11 bx lr12 13// When trying to add a thunk at the end of the section, the thunk itself14// will be too far away, so this won't converge.15 16// CHECK: adding thunks hasn't converged17