diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-11-22 01:08:53 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-11-22 01:08:53 +0000 |
commit | 6e301b2bf25b9edd28d5d8cb7d3046eed15a104f (patch) | |
tree | a88eeff602382970dc259b08558805060723c75d /bfd/coff-i960.c | |
parent | 1abaf976022c1e6b388292115d733f281c5a90e7 (diff) | |
download | gdb-6e301b2bf25b9edd28d5d8cb7d3046eed15a104f.zip gdb-6e301b2bf25b9edd28d5d8cb7d3046eed15a104f.tar.gz gdb-6e301b2bf25b9edd28d5d8cb7d3046eed15a104f.tar.bz2 |
2000-11-21 Kazu Hirata <kazu@hxi.com>
* coff-a29k.c: Fix formatting.
* coff-h8500.c: Likewise.
* coff-i960.c: Likewise.
* coff-ppc.c: Likewise.
* coff-rs6000.c: Likewise.
* coff-stgo32.c: Likewise.
* coff-tic54x.c: Likewise.
* coff-w65.c: Likewise.
* cpu-h8500.c: Likewise.
* cpu-hppa.c: Likewise.
* cpu-ns32k.c: Likewise.
Diffstat (limited to 'bfd/coff-i960.c')
-rw-r--r-- | bfd/coff-i960.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coff-i960.c b/bfd/coff-i960.c index 58b4e91..562f048 100644 --- a/bfd/coff-i960.c +++ b/bfd/coff-i960.c @@ -146,7 +146,7 @@ optcall_callback (abfd, reloc_entry, symbol_in, data, to the correct location. */ { union internal_auxent *aux = &((cs->native+2)->u.auxent); - int word = bfd_get_32(abfd, (bfd_byte *)data + reloc_entry->address); + int word = bfd_get_32 (abfd, (bfd_byte *)data + reloc_entry->address); int olf = (aux->x_bal.x_balntry - cs->native->u.syment.n_value); BFD_ASSERT(cs->native->u.syment.n_numaux==2); @@ -156,7 +156,7 @@ optcall_callback (abfd, reloc_entry, symbol_in, data, sym and auxents untouched, so the delta between the two is the offset of the bal entry point. */ word = ((word + olf) & BAL_MASK) | BAL; - bfd_put_32(abfd, word, (bfd_byte *) data + reloc_entry->address); + bfd_put_32 (abfd, word, (bfd_byte *) data + reloc_entry->address); } result = bfd_reloc_ok; break; |