a00a1f35e1
* elf32-arm.c (elf32_arm_final_link_relocate): Correctly handle the Thumb-2 JUMP19 relocation. ld/testsuite/ * ld-arm/arm-elf.exp: Add jump19 testcase. * ld-arm/jump19.d: New. * ld-arm/jump19.s: New.
12 lines
150 B
ArmAsm
12 lines
150 B
ArmAsm
@ Test the Thumb-2 JUMP19 relocation.
|
|
|
|
.syntax unified
|
|
.thumb
|
|
.global _start
|
|
_start:
|
|
cmp r0, r0
|
|
beq.w bar
|
|
.space 65536
|
|
.weak bar
|
|
bar:
|
|
bx lr
|