summaryrefslogtreecommitdiff
path: root/gold/symtab.cc
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@gmail.com>2016-03-04 08:10:57 -0800
committerCary Coutant <ccoutant@gmail.com>2016-03-04 08:13:35 -0800
commit8d04e81db4967fa1ea2897bb52ccb21e17d9ed91 (patch)
treebf2e74f04296f98d8a9657d2b0092c88246e6d9a /gold/symtab.cc
parentf1771dcebf80c75a13ca456491ddfb9b43fcaddf (diff)
downloadbinutils-gdb-8d04e81db4967fa1ea2897bb52ccb21e17d9ed91.tar.gz
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/symtab.cc')
-rw-r--r--gold/symtab.cc30
1 files changed, 30 insertions, 0 deletions
diff --git a/gold/symtab.cc b/gold/symtab.cc
index a53f6c93fb4..fd75aff0f41 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