bfd/
2005-04-25 H.J. Lu <hongjiu.lu@intel.com> PR 858 * elflink.c (elf_link_input_bfd): Make non-debugging reference to discarded section an error. ld/testsuite/ 2005-04-25 H.J. Lu <hongjiu.lu@intel.com> * ld-discard/extern.d: Expect error. * ld-discard/start.d: Likewise. * ld-discard/static.d: Likewise.
This commit is contained in:
parent
bee59fd28b
commit
6d633fd282
6 changed files with 17 additions and 3 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-04-25 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR 858
|
||||
* elflink.c (elf_link_input_bfd): Make non-debugging reference
|
||||
to discarded section an error.
|
||||
|
||||
2005-04-21 Jerome Guitton <guitton@gnat.com>
|
||||
|
||||
* configure.in: Replace BFD_NEED_DECLARATION checks by the
|
||||
|
|
|
@ -7048,6 +7048,8 @@ elf_link_input_bfd (struct elf_final_link_info *finfo, bfd *input_bfd)
|
|||
(_("`%s' referenced in section `%A' of %B: "
|
||||
"defined in discarded section `%A' of %B"),
|
||||
o, input_bfd, sec, sec->owner, sym_name);
|
||||
bfd_set_error (bfd_error_bad_value);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Try to do the best we can to support buggy old
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2005-04-25 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* ld-discard/extern.d: Expect error.
|
||||
* ld-discard/start.d: Likewise.
|
||||
* ld-discard/static.d: Likewise.
|
||||
|
||||
2005-04-19 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* ld-powerpc/reloc.d: Update to suit removal of non-alloc relocs.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#source: extern.s
|
||||
#ld: -T discard.ld
|
||||
#warning: .*data.* referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump0.o
|
||||
#error: .*data.* referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump0.o
|
||||
#objdump: -p
|
||||
#pass
|
||||
# The expected warning used to start with "`data' referenced..." but
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#source: start.s
|
||||
#source: exit.s
|
||||
#ld: -T discard.ld
|
||||
#warning: `data' referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump1.o
|
||||
#error: `data' referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump1.o
|
||||
#objdump: -p
|
||||
#pass
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#source: static.s
|
||||
#ld: -T discard.ld
|
||||
#warning: `(\.data\.exit|data)' referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump0.o
|
||||
#error: `(\.data\.exit|data)' referenced in section `\.text' of tmpdir/dump0.o: defined in discarded section `\.data\.exit' of tmpdir/dump0.o
|
||||
#objdump: -p
|
||||
#pass
|
||||
|
|
Loading…
Reference in a new issue