mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
14 lines
234 B
ArmAsm
14 lines
234 B
ArmAsm
|
@ Test to ensure that ARM calls exceeding 32Mb generate stubs,
|
||
|
@ and that a large input section forces stub insertion before its
|
||
|
@ contribution.
|
||
|
|
||
|
.text
|
||
|
myfunc:
|
||
|
.space 0x2000000
|
||
|
bl bar
|
||
|
|
||
|
.section .far, "xa"
|
||
|
.global bar
|
||
|
bar:
|
||
|
bx lr
|