diff options
author | Ian Lance Taylor <iant@google.com> | 2006-09-26 21:00:34 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-09-26 21:00:34 +0000 |
commit | 54dc6425456514cdc00cdfef5a21a7bdacfcad2d (patch) | |
tree | a0cf4cee57e8ed1f2cd9c938febf6966cfa69920 /gold/gold.cc | |
parent | 41f8ce693c4a04811bf47a8df83c1a376a9f34f4 (diff) | |
download | gdb-54dc6425456514cdc00cdfef5a21a7bdacfcad2d.zip gdb-54dc6425456514cdc00cdfef5a21a7bdacfcad2d.tar.gz gdb-54dc6425456514cdc00cdfef5a21a7bdacfcad2d.tar.bz2 |
More section layout code.
Diffstat (limited to 'gold/gold.cc')
-rw-r--r-- | gold/gold.cc | 5 |
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; |