diff options
author | Cary Coutant <ccoutant@gmail.com> | 2016-03-04 08:10:57 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2016-03-04 08:13:35 -0800 |
commit | 8d04e81db4967fa1ea2897bb52ccb21e17d9ed91 (patch) | |
tree | bf2e74f04296f98d8a9657d2b0092c88246e6d9a /gold | |
parent | f1771dcebf80c75a13ca456491ddfb9b43fcaddf (diff) | |
download | gdb-8d04e81db4967fa1ea2897bb52ccb21e17d9ed91.zip gdb-8d04e81db4967fa1ea2897bb52ccb21e17d9ed91.tar.gz gdb-8d04e81db4967fa1ea2897bb52ccb21e17d9ed91.tar.bz2 |
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.
Diffstat (limited to 'gold')
-rw-r--r-- | gold/ChangeLog | 7 | ||||
-rw-r--r-- | gold/symtab.cc | 30 |
2 files changed, 37 insertions, 0 deletions
diff --git a/gold/ChangeLog b/gold/ChangeLog index 0e69596..1ba6c31 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -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 diff --git a/gold/symtab.cc b/gold/symtab.cc index a53f6c9..fd75aff 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -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 |