diff options
author | Ian Lance Taylor <iant@google.com> | 2007-09-21 07:20:01 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-09-21 07:20:01 +0000 |
commit | 7e1edb9089c4eec761d09d9bb0ce675eb0bcbc2b (patch) | |
tree | 8e9869d1fd6febfdfdc5e754ba12f36e899d9bb2 /gold/target.h | |
parent | be9d5a933eb75809b583dc29bc7deb7690954d12 (diff) | |
download | gdb-7e1edb9089c4eec761d09d9bb0ce675eb0bcbc2b.zip gdb-7e1edb9089c4eec761d09d9bb0ce675eb0bcbc2b.tar.gz gdb-7e1edb9089c4eec761d09d9bb0ce675eb0bcbc2b.tar.bz2 |
Add global parameters.
Diffstat (limited to 'gold/target.h')
-rw-r--r-- | gold/target.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/target.h b/gold/target.h index 06c7c3d..17cd40b 100644 --- a/gold/target.h +++ b/gold/target.h @@ -91,8 +91,8 @@ class Target // This is called to tell the target to complete any sections it is // handling. After this all sections must have their final size. void - finalize_sections(const General_options* options, Layout* layout) - { return this->do_finalize_sections(options, layout); } + finalize_sections(Layout* layout) + { return this->do_finalize_sections(layout); } // Return a string to use to fill out a code section. This is // basically one or more NOPS which must fill out the specified @@ -135,7 +135,7 @@ class Target // Virtual function which may be implemented by the child class. virtual void - do_finalize_sections(const General_options*, Layout*) + do_finalize_sections(Layout*) { } // Virtual function which must be implemented by the child class if |