f62a3ca731
Asier Llano PR gold/12826 * arm.cc (Target_arm::tag_cpu_arch_combine): Fix handling of arch value that equals to elfcpp::MAX_TAG_CPU_ARCH. * testsuite/Makefile.am: (MOSTLYCLEANFILES): Clean up. Remove redundant arm_exidx_test.so. * testsuite/Makefile.in: Regenerate. (check_SCRIPTS): Add pr12826.sh (check_DATA): Add pr12826.stdout (pr12826.stdout, pr12826.so, pr12826_1.o, pr12826_2.o): New rules. * testsuite/pr12826.sh: New file. * testsuite/pr12826_1.s: Ditto. * testsuite/pr12826_1.s: Ditto.
14 lines
152 B
ArmAsm
14 lines
152 B
ArmAsm
.syntax unified
|
|
.arch armv7e-m
|
|
.thumb
|
|
.text
|
|
.align 2
|
|
.global f2
|
|
.thumb
|
|
.thumb_func
|
|
.type f2, %function
|
|
f2:
|
|
movs r0, #0
|
|
bx lr
|
|
.size f2, .-f2
|