aboutsummaryrefslogtreecommitdiff
path: root/gold/gold.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2006-09-26 21:00:34 +0000
committerIan Lance Taylor <iant@google.com>2006-09-26 21:00:34 +0000
commit54dc6425456514cdc00cdfef5a21a7bdacfcad2d (patch)
treea0cf4cee57e8ed1f2cd9c938febf6966cfa69920 /gold/gold.cc
parent41f8ce693c4a04811bf47a8df83c1a376a9f34f4 (diff)
downloadfsf-binutils-gdb-54dc6425456514cdc00cdfef5a21a7bdacfcad2d.zip
fsf-binutils-gdb-54dc6425456514cdc00cdfef5a21a7bdacfcad2d.tar.gz
fsf-binutils-gdb-54dc6425456514cdc00cdfef5a21a7bdacfcad2d.tar.bz2
More section layout code.
Diffstat (limited to 'gold/gold.cc')
-rw-r--r--gold/gold.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/gold/gold.cc b/gold/gold.cc
index 02e7366..f4642cf 100644
--- a/gold/gold.cc
+++ b/gold/gold.cc
@@ -12,6 +12,7 @@
#include "dirsearch.h"
#include "readsyms.h"
#include "symtab.h"
+#include "object.h"
#include "layout.h"
namespace gold
@@ -67,7 +68,7 @@ void
queue_initial_tasks(const General_options& options,
const Dirsearch& search_path,
const Command_line::Input_argument_list& inputs,
- Workqueue* workqueue, Object_list* input_objects,
+ Workqueue* workqueue, Input_objects* input_objects,
Symbol_table* symtab)
{
if (inputs.empty())
@@ -117,7 +118,7 @@ main(int argc, char** argv)
gold::Workqueue workqueue(command_line.options());
// The list of input objects.
- Object_list input_objects;
+ Input_objects input_objects;
// The symbol table.
Symbol_table symtab;