* coff64-rs6000.c (xcoff64_ppc_relocate_section): Fix logic reversal.
This commit is contained in:
parent
9d1127c56c
commit
213e90f483
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-12-23 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* coff64-rs6000.c (xcoff64_ppc_relocate_section): Fix logic reversal.
|
||||
|
||||
2002-12-23 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* elflink.h (elf_link_output_extsym): Heed strip_discarded.
|
||||
|
|
|
@ -1292,7 +1292,7 @@ xcoff64_ppc_relocate_section (output_bfd, info, input_bfd,
|
|||
}
|
||||
|
||||
if (rel->r_type >= XCOFF_MAX_CALCULATE_RELOCATION
|
||||
|| ((*xcoff64_calculate_relocation[rel->r_type])
|
||||
|| !((*xcoff64_calculate_relocation[rel->r_type])
|
||||
(input_bfd, input_section, output_bfd, rel, sym, &howto, val,
|
||||
addend, &relocation, contents)))
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue