diff options
author | Ian Lance Taylor <iant@google.com> | 2006-11-16 00:38:25 +0000 |
---|---|---|
committer | Ian Lance Taylor <iant@google.com> | 2006-11-16 00:38:25 +0000 |
commit | c06b7b0ba3f6aaa4a3f9586689ef8bfdbd17454e (patch) | |
tree | 732f3a1719d66e1fd993872ecd58ca282d2858f8 /gold/i386.cc | |
parent | 7495b3afc0d28e2d64995f383e2436a35aa14e6d (diff) | |
download | gdb-c06b7b0ba3f6aaa4a3f9586689ef8bfdbd17454e.zip gdb-c06b7b0ba3f6aaa4a3f9586689ef8bfdbd17454e.tar.gz gdb-c06b7b0ba3f6aaa4a3f9586689ef8bfdbd17454e.tar.bz2 |
Snapshot. Includes first cut at output relocation sections.
Diffstat (limited to 'gold/i386.cc')
-rw-r--r-- | gold/i386.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gold/i386.cc b/gold/i386.cc index dc13dca..e6522e3 100644 --- a/gold/i386.cc +++ b/gold/i386.cc @@ -96,7 +96,7 @@ class Target_i386 : public Sized_target<32, false> inline bool relocate(const Relocate_info<32, false>*, Target_i386*, size_t relnum, const elfcpp::Rel<32, false>&, - unsigned int r_type, Sized_symbol<32>*, + unsigned int r_type, const Sized_symbol<32>*, elfcpp::Elf_types<32>::Elf_Addr, unsigned char*, elfcpp::Elf_types<32>::Elf_Addr, off_t); @@ -106,7 +106,7 @@ class Target_i386 : public Sized_target<32, false> inline void relocate_tls(const Relocate_info<32, false>*, size_t relnum, const elfcpp::Rel<32, false>&, - unsigned int r_type, Sized_symbol<32>*, + unsigned int r_type, const Sized_symbol<32>*, elfcpp::Elf_types<32>::Elf_Addr, unsigned char*, elfcpp::Elf_types<32>::Elf_Addr, off_t); @@ -529,7 +529,7 @@ Target_i386::Relocate::relocate(const Relocate_info<32, false>* relinfo, size_t relnum, const elfcpp::Rel<32, false>& rel, unsigned int r_type, - Sized_symbol<32>* gsym, + const Sized_symbol<32>* gsym, elfcpp::Elf_types<32>::Elf_Addr value, unsigned char* view, elfcpp::Elf_types<32>::Elf_Addr address, @@ -670,7 +670,7 @@ Target_i386::Relocate::relocate_tls(const Relocate_info<32, false>* relinfo, size_t relnum, const elfcpp::Rel<32, false>& rel, unsigned int r_type, - Sized_symbol<32>* gsym, + const Sized_symbol<32>* gsym, elfcpp::Elf_types<32>::Elf_Addr value, unsigned char* view, elfcpp::Elf_types<32>::Elf_Addr, |