mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-18 14:53:32 +08:00
0d9a433be4
Fixes pr23591 test failures on hppa64-hpux and score-elf, and xfails frv-linux and lm32-linux. PR ld/23591 * testsuite/ld-elf/pr23591a.s, * testsuite/ld-elf/pr23591b.s, * testsuite/ld-elf/pr23591c.s: Don't start directives in first column. * testsuite/ld-elf/pr23591.d: xfail frv-linux and lm32-linux. Allow __start___sancov_cntrs as a local symbol.
15 lines
249 B
ArmAsm
15 lines
249 B
ArmAsm
.ifdef UNDERSCORE
|
|
.hidden ___start___sancov_cntrs
|
|
.else
|
|
.hidden __start___sancov_cntrs
|
|
.endif
|
|
.text
|
|
.globl _start
|
|
.type _start, %function
|
|
_start:
|
|
.ifdef UNDERSCORE
|
|
.dc.a ___start___sancov_cntrs
|
|
.else
|
|
.dc.a __start___sancov_cntrs
|
|
.endif
|