summaryrefslogtreecommitdiff
path: root/bfd/coff-i960.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2000-11-22 01:08:53 +0000
committerKazu Hirata <kazu@codesourcery.com>2000-11-22 01:08:53 +0000
commit0d12b384fa09156d74d40376f3b8477de0c6f167 (patch)
tree8ee8cf07af77d008da0b9a9cd65979e2620cae9e /bfd/coff-i960.c
parentad3bf939385fd174523baf7a7f2b05ebcec1e405 (diff)
downloadbinutils-redhat-0d12b384fa09156d74d40376f3b8477de0c6f167.tar.gz
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/coff-i960.c b/bfd/coff-i960.c
index 58b4e915ea..562f0481e3 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;