diff options
Diffstat (limited to 'bfd/coff-tic54x.c')
-rw-r--r-- | bfd/coff-tic54x.c | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/bfd/coff-tic54x.c b/bfd/coff-tic54x.c index 0f260bb..cfce86b 100644 --- a/bfd/coff-tic54x.c +++ b/bfd/coff-tic54x.c @@ -138,8 +138,8 @@ tic54x_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; } @@ -342,7 +342,7 @@ tic54x_set_section_contents (bfd *abfd, bfd_size_type bytes_to_do) { return coff_set_section_contents (abfd, section, location, - offset, bytes_to_do); + offset, bytes_to_do); } static void @@ -359,20 +359,20 @@ tic54x_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 + { + _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; - } + (_("%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; + } 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 { |