mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-17 00:56:47 +00:00
c87e430233
* arm.cc (Arm_output_section::Arm_output_section): Set SHF_LINK_ORDER flag of a SHT_ARM_EXIDX section. * testsuite/Makefile.am (arm_exidx_test): New test rules. * testsuite/Makefile.in: Regenerate. * testsuite/arm_exidx_test.s: New file. * testsuite/arm_exidx_test.sh: Same.
13 lines
161 B
ArmAsm
13 lines
161 B
ArmAsm
.syntax unified
|
|
.arch armv5te
|
|
.text
|
|
.align 2
|
|
.global answer
|
|
.type answer, %function
|
|
answer:
|
|
.fnstart
|
|
mov r0, #42
|
|
bx lr
|
|
.fnend
|
|
.size answer, .-answer
|