mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
cc6fd584ed
binutils/ChangeLog: * testsuite/binutils-all/readelf-maskos-1a.d: Fix test for unrecognized bit set in SHF_MASKOS range. * testsuite/binutils-all/readelf-maskos-1b.d: Likewise. * testsuite/binutils-all/readelf-maskos-unknown.s: New test. ld/ChangeLog: * testsuite/ld-elf/retain3.s: Move symbolic reference into writeable .data section from read-only .text section. * testsuite/ld-elf/retain5.d: Don't pass --print-gc-sections for test that doesn't require it. * testsuite/ld-elf/retain6a.d: Adjust test. * testsuite/ld-elf/retain6main.s: Move symbolic reference into writeable .data section from read-only .text section.
20 lines
336 B
ArmAsm
20 lines
336 B
ArmAsm
/* The retention of bar should also prevent foo from being gc'ed, since bar
|
|
references foo. */
|
|
.section .text.foo,"ax"
|
|
.global foo
|
|
.type foo, %function
|
|
foo:
|
|
.word 0
|
|
|
|
.section .data.bar,"awR"
|
|
.global bar
|
|
.type bar, %object
|
|
bar:
|
|
.long foo
|
|
|
|
.section .text._start,"ax"
|
|
.global _start
|
|
.type _start, %function
|
|
_start:
|
|
.word 0
|