aboutsummaryrefslogtreecommitdiff
path: root/gold/gold.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2007-09-26 07:01:35 +0000
committerIan Lance Taylor <iant@google.com>2007-09-26 07:01:35 +0000
commit9025d29d14ae287d2bc338ef1b0bfa043799e15c (patch)
tree7802e1942ac6c30223c2bd6b077dc3a64e1d9280 /gold/gold.cc
parentcc941dee4852b197c1437b2eb28eafb0c9ccaff9 (diff)
downloadfsf-binutils-gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.zip
fsf-binutils-gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.tar.gz
fsf-binutils-gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.tar.bz2
Put size and endianness in parameters.
Diffstat (limited to 'gold/gold.cc')
-rw-r--r--gold/gold.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/gold/gold.cc b/gold/gold.cc
index a73cadb..7d01a81 100644
--- a/gold/gold.cc
+++ b/gold/gold.cc
@@ -250,9 +250,7 @@ queue_final_tasks(const General_options& options,
// Queue a task to write out everything else.
final_blocker->add_blocker();
- workqueue->queue(new Write_data_task(layout, symtab,
- input_objects->target(),
- of, final_blocker));
+ workqueue->queue(new Write_data_task(layout, symtab, of, final_blocker));
// Queue a task to close the output file. This will be blocked by
// FINAL_BLOCKER.