mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
14 lines
335 B
ArmAsm
14 lines
335 B
ArmAsm
|
/* A section that doesn't match any linker script input section rules but
|
||
|
has SHF_GNU_RETAIN applied should not be garbage collected. */
|
||
|
.section .orphaned_section,"axR"
|
||
|
.global orphaned_fn
|
||
|
.type orphaned_fn, %function
|
||
|
orphaned_fn:
|
||
|
.word 0
|
||
|
|
||
|
.section .text._start,"ax"
|
||
|
.global _start
|
||
|
.type _start, %function
|
||
|
_start:
|
||
|
.word 0
|