aboutsummaryrefslogtreecommitdiff
path: root/gold/target.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2006-12-01 16:51:25 +0000
committerIan Lance Taylor <iant@google.com>2006-12-01 16:51:25 +0000
commit16649710df23ad9038e0057035882a92e783f7e6 (patch)
tree7d4db6bb5578f6c90193108bc525a39f09ab379d /gold/target.h
parent8a82f7e3921015b4cbadf29379d8af9d9f6af891 (diff)
downloadbinutils-16649710df23ad9038e0057035882a92e783f7e6.zip
binutils-16649710df23ad9038e0057035882a92e783f7e6.tar.gz
binutils-16649710df23ad9038e0057035882a92e783f7e6.tar.bz2
Can now dynamically link hello, world.
Diffstat (limited to 'gold/target.h')
-rw-r--r--gold/target.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gold/target.h b/gold/target.h
index a031c40..42bed9e 100644
--- a/gold/target.h
+++ b/gold/target.h
@@ -86,8 +86,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(Layout* layout)
- { return this->do_finalize_sections(layout); }
+ finalize_sections(const General_options* options, Layout* layout)
+ { return this->do_finalize_sections(options, layout); }
protected:
// This struct holds the constant information for a child class. We
@@ -121,7 +121,7 @@ class Target
// Virtual function which may be implemented by the child class.
virtual void
- do_finalize_sections(Layout*)
+ do_finalize_sections(const General_options*, Layout*)
{ }
private: