PR 10925
* reloc.cc: Instantiate Sized_relobj::initialize_input_to_output_maps and Sized_relobj:free_input_to_output_maps.
This commit is contained in:
parent
926036bcf7
commit
3e4afc80cd
2 changed files with 47 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2009-11-08 Ian Lance Taylor <ian@airs.com>
|
||||||
|
|
||||||
|
PR 10925
|
||||||
|
* reloc.cc: Instantiate
|
||||||
|
Sized_relobj::initialize_input_to_output_maps and
|
||||||
|
Sized_relobj:free_input_to_output_maps.
|
||||||
|
|
||||||
2009-11-06 Ian Lance Taylor <iant@google.com>
|
2009-11-06 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
PR 10876
|
PR 10876
|
||||||
|
|
|
@ -1551,6 +1551,46 @@ Sized_relobj<64, true>::do_relocate_sections(
|
||||||
Views* pviews);
|
Views* pviews);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_TARGET_32_LITTLE
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<32, false>::initialize_input_to_output_maps();
|
||||||
|
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<32, false>::free_input_to_output_maps();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_TARGET_32_BIG
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<32, true>::initialize_input_to_output_maps();
|
||||||
|
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<32, true>::free_input_to_output_maps();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_TARGET_64_LITTLE
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<64, false>::initialize_input_to_output_maps();
|
||||||
|
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<64, false>::free_input_to_output_maps();
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifdef HAVE_TARGET_64_BIG
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<64, true>::initialize_input_to_output_maps();
|
||||||
|
|
||||||
|
template
|
||||||
|
void
|
||||||
|
Sized_relobj<64, true>::free_input_to_output_maps();
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
|
#if defined(HAVE_TARGET_32_LITTLE) || defined(HAVE_TARGET_32_BIG)
|
||||||
template
|
template
|
||||||
class Merged_symbol_value<32>;
|
class Merged_symbol_value<32>;
|
||||||
|
|
Loading…
Reference in a new issue