diff options
author | Ian Lance Taylor <iant@google.com> | 2006-11-14 19:21:05 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-11-14 19:21:05 +0000 |
commit | dbe717effbdf31236088837f4686fd5ad5e71893 (patch) | |
tree | fd5ed267334d62fadcaf7ff7132c0a7287553ed8 /gold/readsyms.h | |
parent | 6c73cbb1d9a26d1c4d9bd5464832846b7c049b9d (diff) | |
download | gdb-dbe717effbdf31236088837f4686fd5ad5e71893.zip gdb-dbe717effbdf31236088837f4686fd5ad5e71893.tar.gz gdb-dbe717effbdf31236088837f4686fd5ad5e71893.tar.bz2 |
More dynamic object support, initial scripting support.
Diffstat (limited to 'gold/readsyms.h')
-rw-r--r-- | gold/readsyms.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/readsyms.h b/gold/readsyms.h index 6631011..d5ada61 100644 --- a/gold/readsyms.h +++ b/gold/readsyms.h @@ -36,10 +36,10 @@ class Read_symbols : public Task // symbols. Read_symbols(const General_options& options, Input_objects* input_objects, Symbol_table* symtab, Layout* layout, const Dirsearch& dirpath, - const Input_argument& input, Input_group* input_group, + const Input_argument* input_argument, Input_group* input_group, Task_token* this_blocker, Task_token* next_blocker) : options_(options), input_objects_(input_objects), symtab_(symtab), - layout_(layout), dirpath_(dirpath), input_(input), + layout_(layout), dirpath_(dirpath), input_argument_(input_argument), input_group_(input_group), this_blocker_(this_blocker), next_blocker_(next_blocker) { } @@ -67,7 +67,7 @@ class Read_symbols : public Task Symbol_table* symtab_; Layout* layout_; const Dirsearch& dirpath_; - const Input_argument& input_; + const Input_argument* input_argument_; Input_group* input_group_; Task_token* this_blocker_; Task_token* next_blocker_; |