diff options
author | Ian Lance Taylor <iant@google.com> | 2007-09-26 07:01:35 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2007-09-26 07:01:35 +0000 |
commit | 9025d29d14ae287d2bc338ef1b0bfa043799e15c (patch) | |
tree | 7802e1942ac6c30223c2bd6b077dc3a64e1d9280 /gold/ehframe.h | |
parent | cc941dee4852b197c1437b2eb28eafb0c9ccaff9 (diff) | |
download | gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.zip gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.tar.gz gdb-9025d29d14ae287d2bc338ef1b0bfa043799e15c.tar.bz2 |
Put size and endianness in parameters.
Diffstat (limited to 'gold/ehframe.h')
-rw-r--r-- | gold/ehframe.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gold/ehframe.h b/gold/ehframe.h index 1f6c022..0641ac8 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_; }; |