mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
2f47f5fc13
* elf32-arm.c (allocate_dynrelocs_for_symbol): Transform ST_BRANCH_TO_ARM into ST_BRANCH_TO_THUMB if the target only supports thumb instructions. PR ld/15302 * ld-arm/branch-lks-sym.ld: New script. * ld-arm/thumb-b-lks-sym.s: New test. * ld-arm/thumb-b-lks-sym.d: Expected disassembly. * ld-arm/thumb-bl-lks-sym.s: New test. * ld-arm/thumb-bl-lks-sym.d: Expected disassembly. * ld-arm/arm-elf.exp: Run the new tests.
17 lines
339 B
ArmAsm
17 lines
339 B
ArmAsm
@ Test to ensure that the b to linker script symbol isn't changed to other format.
|
|
|
|
|
|
.syntax unified
|
|
.cpu cortex-m3
|
|
.fpu softvfp
|
|
.thumb
|
|
.file "x.c"
|
|
.text
|
|
.align 2
|
|
.global main
|
|
.thumb
|
|
.thumb_func
|
|
.type main, %function
|
|
main:
|
|
b extFunc
|