* fileread.cc (Input_file::open): Remove options parameter.

Change all callers.
	(Input_file::open_binary): Likewise.
	* script.cc (read_input_script): Likewise.
	* readsyms.h (class Read_symbols): Remove options_ field.  Remove
	options parameter from constructor.  Change all callers.
	(class Read_script): Likewise.
	* fileread.h (class Input_file): Update declarations.
	* script.h (read_input_script): Update declaration.
This commit is contained in:
Ian Lance Taylor
2009-03-13 21:30:06 +00:00
parent 9ee6bb930d
commit f1ed28fb81
10 changed files with 43 additions and 43 deletions

View File

@ -182,7 +182,7 @@ queue_initial_tasks(const General_options& options,
{
Task_token* next_blocker = new Task_token(true);
next_blocker->add_blocker();
workqueue->queue(new Read_symbols(options, input_objects, symtab, layout,
workqueue->queue(new Read_symbols(input_objects, symtab, layout,
&search_path, mapfile, &*p, NULL,
this_blocker, next_blocker));
this_blocker = next_blocker;