diff options
Diffstat (limited to 'bfd/coff-tic4x.c')
-rw-r--r-- | bfd/coff-tic4x.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/bfd/coff-tic4x.c b/bfd/coff-tic4x.c index 89dc36b..366331e 100644 --- a/bfd/coff-tic4x.c +++ b/bfd/coff-tic4x.c @@ -82,8 +82,8 @@ tic4x_relocation (bfd *abfd ATTRIBUTE_UNUSED, if (output_bfd != (bfd *) NULL) { /* This is a partial relocation, and we want to apply the - relocation to the reloc entry rather than the raw data. - Modify the reloc inplace to reflect what we now know. */ + relocation to the reloc entry rather than the raw data. + Modify the reloc inplace to reflect what we now know. */ reloc_entry->address += input_section->output_offset; return bfd_reloc_ok; } @@ -221,20 +221,20 @@ tic4x_reloc_processing (arelent *relent, if (reloc->r_symndx != -1) { if (reloc->r_symndx < 0 || reloc->r_symndx >= obj_conv_table_size (abfd)) - { + { _bfd_error_handler /* xgettext: c-format */ (_("%B: warning: illegal symbol index %ld in relocs"), abfd, reloc->r_symndx); - relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; - ptr = NULL; - } + relent->sym_ptr_ptr = bfd_abs_section_ptr->symbol_ptr_ptr; + ptr = NULL; + } else - { - relent->sym_ptr_ptr = (symbols - + obj_convert (abfd)[reloc->r_symndx]); - ptr = *(relent->sym_ptr_ptr); - } + { + relent->sym_ptr_ptr = (symbols + + obj_convert (abfd)[reloc->r_symndx]); + ptr = *(relent->sym_ptr_ptr); + } } else { |