From 16583161e14cbe747e78da035790c48951884556 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Thu, 7 Jan 2010 13:44:37 +0000 Subject: Always keep SHT_NOTE sections bfd/ 2010-01-07 H.J. Lu PR ld/11143 * elflink.c (elf_gc_sweep): Keep SHT_NOTE section. ld/testsuite/ 2010-01-07 H.J. Lu PR ld/11143 * ld-gc/gc.exp: Run abi-note. * ld-gc/abi-note.d: New. * ld-gc/abi-note.s: Likewise. --- ld/testsuite/ld-gc/abi-note.s | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ld/testsuite/ld-gc/abi-note.s (limited to 'ld/testsuite/ld-gc/abi-note.s') diff --git a/ld/testsuite/ld-gc/abi-note.s b/ld/testsuite/ld-gc/abi-note.s new file mode 100644 index 0000000..22536c0 --- /dev/null +++ b/ld/testsuite/ld-gc/abi-note.s @@ -0,0 +1,15 @@ + .text + .global _start +_start: + .long 1 + + .section ".note.ABI-tag", "a" + .p2align 2 + .long 1f - 0f /* name length */ + .long 3f - 2f /* data length */ + .long 1 /* note type */ +0: .asciz "GNU" /* vendor name */ +1: .p2align 2 +2: .long 1 + .long 2 +3: .p2align 2 /* pad out section */ -- cgit v1.1