aboutsummaryrefslogtreecommitdiff
path: root/bfd/hp300hpux.c
diff options
context:
space:
mode:
authorAlan Modra <amodra@gmail.com>2015-12-01 13:56:09 +1030
committerAlan Modra <amodra@gmail.com>2015-12-01 14:00:33 +1030
commit3a8c4a5b428c1babd941606c2bbe9cf8a041d9d9 (patch)
tree8a7428479ed1b88498061505b50f84b2a8c8d2c6 /bfd/hp300hpux.c
parentbbb1afc89b5cfa2f09b6a7c25fbfef745fbdd724 (diff)
downloadgdb-3a8c4a5b428c1babd941606c2bbe9cf8a041d9d9.zip
gdb-3a8c4a5b428c1babd941606c2bbe9cf8a041d9d9.tar.gz
gdb-3a8c4a5b428c1babd941606c2bbe9cf8a041d9d9.tar.bz2
Trim unused params from aout adjust_sizes_and_vmas
* aoutx.h (adjust_sizes_and_vmas): Remove unused text_size and text_end parameters. Update callers. * aout-tic30.c: Update adjust_sizes_and_vmas callers. * hp300hpux.c: Likewise. * i386lynx.c: Likewise. * libaout.h: Likewise. * netbsd.h: Likewise. * pdp11.c: Likewise. * riscix.c: Likewise.
Diffstat (limited to 'bfd/hp300hpux.c')
-rw-r--r--bfd/hp300hpux.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/bfd/hp300hpux.c b/bfd/hp300hpux.c
index 564cdc2..281b50f 100644
--- a/bfd/hp300hpux.c
+++ b/bfd/hp300hpux.c
@@ -280,15 +280,13 @@ MY (write_object_contents) (bfd * abfd)
{
struct external_exec exec_bytes;
struct internal_exec *execp = exec_hdr (abfd);
- bfd_size_type text_size; /* dummy vars */
- file_ptr text_end;
memset (&exec_bytes, 0, sizeof (exec_bytes));
obj_reloc_entry_size (abfd) = RELOC_STD_SIZE;
if (adata (abfd).magic == undecided_magic)
- NAME (aout,adjust_sizes_and_vmas) (abfd, &text_size, &text_end);
+ NAME (aout,adjust_sizes_and_vmas) (abfd);
execp->a_syms = 0;
execp->a_entry = bfd_get_start_address (abfd);