diff options
author | Ian Lance Taylor <iant@google.com> | 2008-01-26 01:17:45 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2008-01-26 01:17:45 +0000 |
commit | 9b07f471e3360c9790f7ec83400e500e5f3098ca (patch) | |
tree | f2efce735a3f4314b493706a771566c5441f97be /gold/script.h | |
parent | 8f0a6da7a9e9d4b8258af20cfb5db072ace0ba86 (diff) | |
download | binutils-9b07f471e3360c9790f7ec83400e500e5f3098ca.zip binutils-9b07f471e3360c9790f7ec83400e500e5f3098ca.tar.gz binutils-9b07f471e3360c9790f7ec83400e500e5f3098ca.tar.bz2 |
Don't pass around the target in order to define symbols; get it from
the parameters instead.
Diffstat (limited to 'gold/script.h')
-rw-r--r-- | gold/script.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gold/script.h b/gold/script.h index 1f6aea6..24bd513 100644 --- a/gold/script.h +++ b/gold/script.h @@ -46,7 +46,6 @@ class Input_argument; class Input_objects; class Input_group; class Input_file; -class Target; class Task_token; class Workqueue; struct Version_dependency_list; @@ -179,7 +178,7 @@ class Symbol_assignment // Add the symbol to the symbol table. void - add_to_table(Symbol_table*, const Target*); + add_to_table(Symbol_table*); // Finalize the symbol value. void finalize(Symbol_table*, const Layout*); @@ -273,7 +272,7 @@ class Script_options // Add all symbol definitions to the symbol table. void - add_symbols_to_table(Symbol_table*, const Target*); + add_symbols_to_table(Symbol_table*); // Finalize the symbol values. void |