mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
a747059210
* elf32-arm.c (elf32_arm_next_input_section): Skip sections without SEC_CODE. ld/testsuite/ * ld-arm/arm-elf.exp (armeabitests): Add farcall-data. * ld-arm/farcall-data.d, ld-arm/farcall-data.s: New. * lib/ld-lib.exp (run_ld_link_tests, run_cc_link_tests): Correct regular expression for archives.
15 lines
180 B
ArmAsm
15 lines
180 B
ArmAsm
.syntax unified
|
|
.text
|
|
.global _start
|
|
.type _start, %function
|
|
_start:
|
|
b far
|
|
|
|
.section .after
|
|
after:
|
|
.word 0x11111111
|
|
|
|
.section .far, "ax"
|
|
.type far, %function
|
|
far: bx lr
|