aboutsummaryrefslogtreecommitdiff
path: root/test/COFF/arm-thumb-branch20-error.s
diff options
context:
space:
mode:
Diffstat (limited to 'test/COFF/arm-thumb-branch20-error.s')
-rw-r--r--test/COFF/arm-thumb-branch20-error.s12
1 files changed, 9 insertions, 3 deletions
diff --git a/test/COFF/arm-thumb-branch20-error.s b/test/COFF/arm-thumb-branch20-error.s
index ec7d23b05329..fbbc0d49d02b 100644
--- a/test/COFF/arm-thumb-branch20-error.s
+++ b/test/COFF/arm-thumb-branch20-error.s
@@ -1,10 +1,16 @@
// REQUIRES: arm
// RUN: llvm-mc -filetype=obj -triple=thumbv7a-windows-gnu %s -o %t.obj
-// RUN: llvm-mc -filetype=obj -triple=thumbv7a-windows-gnu %S/Inputs/far-arm-thumb-abs20.s -o %t.far.obj
-// RUN: not lld-link -entry:_start -subsystem:console %t.obj %t.far.obj -out:%t.exe 2>&1 | FileCheck %s
+// RUN: not lld-link -entry:_start -subsystem:console %t.obj -out:%t.exe 2>&1 | FileCheck %s
.syntax unified
.globl _start
_start:
bne too_far20
+ .space 0x100000
+ .section .text$a, "xr"
+too_far20:
+ bx lr
-// CHECK: relocation out of range
+// When trying to add a thunk at the end of the section, the thunk itself
+// will be too far away, so this won't converge.
+
+// CHECK: adding thunks hasn't converged