diff options
author | Cary Coutant <ccoutant@google.com> | 2008-09-06 01:13:00 +0000 |
---|---|---|
committer | Cary Coutant <ccoutant@google.com> | 2008-09-06 01:13:00 +0000 |
commit | ae6dce4daaa1005a3a5124845172bb51f8bc01ab (patch) | |
tree | 3be8fc1d17783774abcf641c0dfadcf624188c41 /gold/symtab.cc | |
parent | a0057aa056f26d574d1ad26f1980bf3f85b04554 (diff) | |
download | gdb-ae6dce4daaa1005a3a5124845172bb51f8bc01ab.zip gdb-ae6dce4daaa1005a3a5124845172bb51f8bc01ab.tar.gz gdb-ae6dce4daaa1005a3a5124845172bb51f8bc01ab.tar.bz2 |
2008-09-05 Cary Coutant <ccoutant@google.com>
* symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
explicit instantiations.
Diffstat (limited to 'gold/symtab.cc')
-rw-r--r-- | gold/symtab.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gold/symtab.cc b/gold/symtab.cc index 37f7d35..393d71a 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -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 |