Fix undefined symbol errors introduced with previous commit.
gold/ PR gold/19019 PR gold/19763 * symtab.cc: Instantiate Sized_symbol::init_constant and Sized_symbol::init_undefined.
This commit is contained in:
parent
f1771dcebf
commit
8d04e81db4
2 changed files with 37 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
|||
2016-03-04 Cary Coutant <ccoutant@gmail.com>
|
||||
|
||||
PR gold/19019
|
||||
PR gold/19763
|
||||
* symtab.cc: Instantiate Sized_symbol::init_constant and
|
||||
Sized_symbol::init_undefined.
|
||||
|
||||
2016-03-03 Cary Coutant <ccoutant@gmail.com>
|
||||
|
||||
PR gold/19019
|
||||
|
|
|
@ -3817,6 +3817,21 @@ Sized_symbol<32>::init_output_data(const char* name, const char* version,
|
|||
unsigned char nonvis,
|
||||
bool offset_is_from_end,
|
||||
bool is_predefined);
|
||||
|
||||
template
|
||||
void
|
||||
Sized_symbol<32>::init_constant(const char* name, const char* version,
|
||||
Value_type value, Size_type symsize,
|
||||
elfcpp::STT type, elfcpp::STB binding,
|
||||
elfcpp::STV visibility, unsigned char nonvis,
|
||||
bool is_predefined);
|
||||
|
||||
template
|
||||
void
|
||||
Sized_symbol<32>::init_undefined(const char* name, const char* version,
|
||||
Value_type value, elfcpp::STT type,
|
||||
elfcpp::STB binding, elfcpp::STV visibility,
|
||||
unsigned char nonvis);
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_TARGET_64_LITTLE) || defined(HAVE_TARGET_64_BIG)
|
||||
|
@ -3830,6 +3845,21 @@ Sized_symbol<64>::init_output_data(const char* name, const char* version,
|
|||
unsigned char nonvis,
|
||||
bool offset_is_from_end,
|
||||
bool is_predefined);
|
||||
|
||||
template
|
||||
void
|
||||
Sized_symbol<64>::init_constant(const char* name, const char* version,
|
||||
Value_type value, Size_type symsize,
|
||||
elfcpp::STT type, elfcpp::STB binding,
|
||||
elfcpp::STV visibility, unsigned char nonvis,
|
||||
bool is_predefined);
|
||||
|
||||
template
|
||||
void
|
||||
Sized_symbol<64>::init_undefined(const char* name, const char* version,
|
||||
Value_type value, elfcpp::STT type,
|
||||
elfcpp::STB binding, elfcpp::STV visibility,
|
||||
unsigned char nonvis);
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_TARGET_32_LITTLE
|
||||
|
|
Loading…
Add table
Reference in a new issue