From f2c822e386797796f5f0436c86d2d08baf61e22a Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sat, 31 May 2003 07:55:10 +0000 Subject: [PATCH] * elf32-ppc.c (allocate_dynrelocs): Use single slot for first 8192 plt entries, not just 8191. --- bfd/ChangeLog | 5 +++++ bfd/elf32-ppc.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index ac381e6f64d..04582f8b0f6 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2003-05-31 Jakub Jelinek + + * elf32-ppc.c (allocate_dynrelocs): Use single slot for first 8192 + plt entries, not just 8191. + 2003-05-30 Daniel Jacobowitz * elfxx-mips.c (_bfd_mips_elf_discard_info): Correct loop index. diff --git a/bfd/elf32-ppc.c b/bfd/elf32-ppc.c index 8c0e4d5e8f1..d2cbd836f40 100644 --- a/bfd/elf32-ppc.c +++ b/bfd/elf32-ppc.c @@ -2719,7 +2719,7 @@ allocate_dynrelocs (h, inf) for two entries is allocated. */ s->_raw_size += PLT_ENTRY_SIZE; if ((s->_raw_size - PLT_INITIAL_ENTRY_SIZE) / PLT_ENTRY_SIZE - >= PLT_NUM_SINGLE_ENTRIES) + > PLT_NUM_SINGLE_ENTRIES) s->_raw_size += PLT_ENTRY_SIZE; /* We also need to make an entry in the .rela.plt section. */ -- 2.30.2