diff options
author | Tristan Gingold <gingold@adacore.com> | 2008-01-11 09:07:04 +0000 |
---|---|---|
committer | Tristan Gingold <gingold@adacore.com> | 2008-01-11 09:07:04 +0000 |
commit | 7dda2462a7035e0c9cc9706abfda31861c551b14 (patch) | |
tree | cc98603d9cf8cd344af082a87ac10eae9c3687c1 /bfd/elflink.c | |
parent | 72f5cf0e510f4e268ee9d36ea140a3d02b5490c0 (diff) | |
download | gdb-7dda2462a7035e0c9cc9706abfda31861c551b14.zip gdb-7dda2462a7035e0c9cc9706abfda31861c551b14.tar.gz gdb-7dda2462a7035e0c9cc9706abfda31861c551b14.tar.bz2 |
2008-01-11 Tristan Gingold <gingold@adacore.com>
Eric Botcazou <ebotcazou@adacore.com>
* elf32-ppc.c (ppc_elf_gc_sweep_hook): Exit early if generating a
relocatable.
* elf32-arm.c (elf32_arm_gc_sweep_hook): Likewise.
* elf32-cris.c (cris_elf_gc_sweep_hook): Likewise.
* elf32-hppa.c (elf32_hppa_gc_sweep_hook): Likewise.
* elf32-i386.c (elf_i386_gc_sweep_hook): Likewise.
* elf32-m32r.c (m32r_elf_gc_sweep_hook): Likewise.
* elf32-m68k.c (elf_m68k_gc_sweep_hook): Likewise.
* elf32-s390.c (elf_s390_gc_sweep_hook): Likewise.
* elf32-sh.c (sh_elf_gc_sweep_hook): Likewise.
* elf32-vax.c (elf_vax_gc_sweep_hook): Likewise.
* elf32-xtensa.c (elf_xtensa_gc_sweep_hook): Likewise.
* elf64-x86-64.c (elf64_x86_64_gc_sweep_hook): Likewise.
* elf64-s390.c (elf_s390_gc_sweep_hook): Likewise.
* elf64-ppc.c (ppc64_elf_gc_sweep_hook): Likewise.
* elfxx-mips.c (_bfd_mips_elf_gc_sweep_hook): Likewise.
* elfxx-sparc.c (_bfd_sparc_elf_gc_sweep_hook): Likewise.
* elflink.c (bfd_elf_gc_sections): Do not punt on relocatable output
or executable output with relocations.
Diffstat (limited to 'bfd/elflink.c')
-rw-r--r-- | bfd/elflink.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bfd/elflink.c b/bfd/elflink.c index 1d9d574..f9f7e13 100644 --- a/bfd/elflink.c +++ b/bfd/elflink.c @@ -11474,8 +11474,6 @@ bfd_elf_gc_sections (bfd *abfd, struct bfd_link_info *info) const struct elf_backend_data *bed = get_elf_backend_data (abfd); if (!bed->can_gc_sections - || info->relocatable - || info->emitrelocations || !is_elf_hash_table (info->hash)) { (*_bfd_error_handler)(_("Warning: gc-sections option ignored")); |