mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 02:24:46 +08:00
* elf32-sh.c (sh_elf_check_relocs): Don't set DF_TEXTREL here.
* ld-sh/shared-2.d, ld-sh/textrel1.s, ld-sh/textrel2.s: New test.
This commit is contained in:
parent
edf6a2322f
commit
866f48b717
@ -1,3 +1,7 @@
|
||||
2003-08-02 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||
|
||||
* elf32-sh.c (sh_elf_check_relocs): Don't set DF_TEXTREL here.
|
||||
|
||||
2003-08-01 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* elfxx-ia64.c (get_got): Align the .got section at 8 bytes.
|
||||
|
@ -6497,8 +6497,6 @@ sh_elf_check_relocs (bfd *abfd, struct bfd_link_info *info, asection *sec,
|
||||
sreloc, 2))
|
||||
return FALSE;
|
||||
}
|
||||
if (sec->flags & SEC_READONLY)
|
||||
info->flags |= DF_TEXTREL;
|
||||
elf_section_data (sec)->sreloc = sreloc;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,7 @@
|
||||
2003-08-02 Kaz Kojima <kkojima@rr.iij4u.or.jp>
|
||||
|
||||
* ld-sh/shared-2.d, ld-sh/textrel1.s, ld-sh/textrel2.s: New test.
|
||||
|
||||
2003-08-02 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* ld-d10v/reloc-001.d: Adjust for objdump -d change.
|
||||
|
20
ld/testsuite/ld-sh/shared-2.d
Normal file
20
ld/testsuite/ld-sh/shared-2.d
Normal file
@ -0,0 +1,20 @@
|
||||
#source: textrel1.s
|
||||
#source: textrel2.s
|
||||
#as: -little
|
||||
#ld: -shared -EL
|
||||
#readelf: -d
|
||||
#target: sh*-*-elf sh*-*-linux* sh*-*-netbsd*
|
||||
|
||||
# Make sure that there is no unnecessary DT_TEXTREL entry.
|
||||
|
||||
Dynamic segment at offset 0x[0-9a-f]+ contains 9 entries:
|
||||
Tag Type Name/Value
|
||||
0x00000004 \(HASH\) 0x[0-9a-f]+
|
||||
0x00000005 \(STRTAB\) 0x[0-9a-f]+
|
||||
0x00000006 \(SYMTAB\) 0x[0-9a-f]+
|
||||
0x0000000a \(STRSZ\) [0-9]+ \(bytes\)
|
||||
0x0000000b \(SYMENT\) 16 \(bytes\)
|
||||
0x00000007 \(RELA\) 0x[0-9a-f]+
|
||||
0x00000008 \(RELASZ\) 12 \(bytes\)
|
||||
0x00000009 \(RELAENT\) 12 \(bytes\)
|
||||
0x00000000 \(NULL\) 0x0
|
11
ld/testsuite/ld-sh/textrel1.s
Normal file
11
ld/testsuite/ld-sh/textrel1.s
Normal file
@ -0,0 +1,11 @@
|
||||
.text
|
||||
.align 5
|
||||
.globl f
|
||||
f:
|
||||
mov.l .L1,r0
|
||||
rts
|
||||
nop
|
||||
.align 2
|
||||
.L1: .long g - f
|
||||
.long foo@GOT
|
||||
|
7
ld/testsuite/ld-sh/textrel2.s
Normal file
7
ld/testsuite/ld-sh/textrel2.s
Normal file
@ -0,0 +1,7 @@
|
||||
.text
|
||||
.align 5
|
||||
.globl g
|
||||
.hidden g
|
||||
g:
|
||||
rts
|
||||
nop
|
Loading…
Reference in New Issue
Block a user