mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
f93ab3a0b8
commit d2ef37ebd9
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Fri Dec 7 08:30:30 2018 -0800
elf: Report property change when merging properties
failed to remove the property after reporting it has been removed. This
patch corrects it.
bfd/
PR ld/24721
* elf-properties.c (elf_merge_gnu_property_list): Remove the
property after reporting property removal.
ld/
PR ld/24721
* testsuite/ld-x86-64/x86-64.exp: Run PR ld/24721 tests.
* testsuite/ld-x86-64/pr24721-x32.d: New file.
* testsuite/ld-x86-64/pr24721.d: Likewise.
* testsuite/ld-x86-64/pr24721.map: Likewise.
* testsuite/ld-x86-64/pr24721a.s: Likewise.
* testsuite/ld-x86-64/pr24721b.s: Likewise.
35 lines
487 B
ArmAsm
35 lines
487 B
ArmAsm
.text
|
|
.globl foo
|
|
.type foo,@function
|
|
.p2align 4
|
|
foo:
|
|
ret
|
|
|
|
.section ".note.gnu.property", "a"
|
|
.ifdef __64_bit__
|
|
.p2align 3
|
|
.else
|
|
.p2align 2
|
|
.endif
|
|
.long 1f - 0f /* name length */
|
|
.long 5f - 2f /* data length */
|
|
.long 5 /* note type */
|
|
0: .asciz "GNU" /* vendor name */
|
|
1:
|
|
.ifdef __64_bit__
|
|
.p2align 3
|
|
.else
|
|
.p2align 2
|
|
.endif
|
|
2: .long 0xc0000002 /* pr_type. */
|
|
.long 4f - 3f /* pr_datasz. */
|
|
3:
|
|
.long 0x1
|
|
4:
|
|
.ifdef __64_bit__
|
|
.p2align 3
|
|
.else
|
|
.p2align 2
|
|
.endif
|
|
5:
|