summaryrefslogtreecommitdiff
path: root/gold/ehframe.h
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@google.com>2007-09-26 07:01:35 +0000
committerIan Lance Taylor <iant@google.com>2007-09-26 07:01:35 +0000
commit9025d29d14ae287d2bc338ef1b0bfa043799e15c (patch)
tree7802e1942ac6c30223c2bd6b077dc3a64e1d9280 /gold/ehframe.h
parentcc941dee4852b197c1437b2eb28eafb0c9ccaff9 (diff)
downloadbinutils-gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.tar.gz
Put size and endianness in parameters.
Diffstat (limited to 'gold/ehframe.h')
-rw-r--r--gold/ehframe.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/gold/ehframe.h b/gold/ehframe.h
index 1f6c022a95e..0641ac866f5 100644
--- a/gold/ehframe.h
+++ b/gold/ehframe.h
@@ -42,7 +42,7 @@ namespace gold
class Eh_frame_hdr : public Output_section_data
{
public:
- Eh_frame_hdr(const Target*, Output_section* eh_frame_section);
+ Eh_frame_hdr(Output_section* eh_frame_section);
// Set the final data size.
void
@@ -53,8 +53,6 @@ class Eh_frame_hdr : public Output_section_data
do_write(Output_file*);
private:
- // The output target.
- const Target* target_;
// The .eh_frame section.
Output_section* eh_frame_section_;
};