GNU Binutils with patches for OS216
Revisión | ae6dce4daaa1005a3a5124845172bb51f8bc01ab (tree) |
---|---|
Tiempo | 2008-09-06 10:13:00 |
Autor | Cary Coutant <ccoutant@goog...> |
Commiter | Cary Coutant |
2008-09-05 Cary Coutant <ccoutant@google.com>
* symtab.cc (Symbol_table::add_from_dynobj): Fix typos in
explicit instantiations.
@@ -1,3 +1,8 @@ | ||
1 | +2008-09-05 Cary Coutant <ccoutant@google.com> | |
2 | + | |
3 | + * symtab.cc (Symbol_table::add_from_dynobj): Fix typos in | |
4 | + explicit instantiations. | |
5 | + | |
1 | 6 | 2008-08-28 Kris Van Hees <kris.van.hees@oracle.com> |
2 | 7 | |
3 | 8 | PR gold/6858 |
@@ -2655,7 +2655,7 @@ Symbol_table::add_from_relobj<32, false>( | ||
2655 | 2655 | size_t symndx_offset, |
2656 | 2656 | const char* sym_names, |
2657 | 2657 | size_t sym_name_size, |
2658 | - Sized_relobj<32, true>::Symbols* sympointers, | |
2658 | + Sized_relobj<32, false>::Symbols* sympointers, | |
2659 | 2659 | size_t* defined); |
2660 | 2660 | #endif |
2661 | 2661 |
@@ -2669,7 +2669,7 @@ Symbol_table::add_from_relobj<32, true>( | ||
2669 | 2669 | size_t symndx_offset, |
2670 | 2670 | const char* sym_names, |
2671 | 2671 | size_t sym_name_size, |
2672 | - Sized_relobj<32, false>::Symbols* sympointers, | |
2672 | + Sized_relobj<32, true>::Symbols* sympointers, | |
2673 | 2673 | size_t* defined); |
2674 | 2674 | #endif |
2675 | 2675 |
@@ -2683,7 +2683,7 @@ Symbol_table::add_from_relobj<64, false>( | ||
2683 | 2683 | size_t symndx_offset, |
2684 | 2684 | const char* sym_names, |
2685 | 2685 | size_t sym_name_size, |
2686 | - Sized_relobj<64, true>::Symbols* sympointers, | |
2686 | + Sized_relobj<64, false>::Symbols* sympointers, | |
2687 | 2687 | size_t* defined); |
2688 | 2688 | #endif |
2689 | 2689 |
@@ -2697,7 +2697,7 @@ Symbol_table::add_from_relobj<64, true>( | ||
2697 | 2697 | size_t symndx_offset, |
2698 | 2698 | const char* sym_names, |
2699 | 2699 | size_t sym_name_size, |
2700 | - Sized_relobj<64, false>::Symbols* sympointers, | |
2700 | + Sized_relobj<64, true>::Symbols* sympointers, | |
2701 | 2701 | size_t* defined); |
2702 | 2702 | #endif |
2703 | 2703 |