2008-09-05 Cary Coutant <ccoutant@google.com>

* symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
	explicit instantiations.
This commit is contained in:
Cary Coutant 2008-09-06 01:13:00 +00:00
parent a0057aa056
commit ae6dce4daa
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2008-09-05 Cary Coutant <ccoutant@google.com>
* symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
explicit instantiations.
2008-08-28 Kris Van Hees <kris.van.hees@oracle.com>
PR gold/6858

View File

@ -2655,7 +2655,7 @@ Symbol_table::add_from_relobj<32, false>(
size_t symndx_offset,
const char* sym_names,
size_t sym_name_size,
Sized_relobj<32, true>::Symbols* sympointers,
Sized_relobj<32, false>::Symbols* sympointers,
size_t* defined);
#endif
@ -2669,7 +2669,7 @@ Symbol_table::add_from_relobj<32, true>(
size_t symndx_offset,
const char* sym_names,
size_t sym_name_size,
Sized_relobj<32, false>::Symbols* sympointers,
Sized_relobj<32, true>::Symbols* sympointers,
size_t* defined);
#endif
@ -2683,7 +2683,7 @@ Symbol_table::add_from_relobj<64, false>(
size_t symndx_offset,
const char* sym_names,
size_t sym_name_size,
Sized_relobj<64, true>::Symbols* sympointers,
Sized_relobj<64, false>::Symbols* sympointers,
size_t* defined);
#endif
@ -2697,7 +2697,7 @@ Symbol_table::add_from_relobj<64, true>(
size_t symndx_offset,
const char* sym_names,
size_t sym_name_size,
Sized_relobj<64, false>::Symbols* sympointers,
Sized_relobj<64, true>::Symbols* sympointers,
size_t* defined);
#endif