From d4f5281bde13826402380afa522a4da25bb089e5 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Sat, 22 Sep 2007 20:08:16 +0000 Subject: [PATCH] It's OK to have a version if we have an existing symbol. --- gold/symtab.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gold/symtab.cc b/gold/symtab.cc index a6e7958..09a3b0e 100644 --- a/gold/symtab.cc +++ b/gold/symtab.cc @@ -835,7 +835,7 @@ Symbol_table::do_define_in_output_data( if (sym == NULL) return NULL; - gold_assert(version == NULL); + gold_assert(version == NULL || oldsym != NULL); sym->init(name, od, value, symsize, type, binding, visibility, nonvis, offset_is_from_end); @@ -918,7 +918,7 @@ Symbol_table::do_define_in_output_segment( if (sym == NULL) return NULL; - gold_assert(version == NULL); + gold_assert(version == NULL || oldsym != NULL); sym->init(name, os, value, symsize, type, binding, visibility, nonvis, offset_base); @@ -995,7 +995,7 @@ Symbol_table::do_define_as_constant( if (sym == NULL) return NULL; - gold_assert(version == NULL); + gold_assert(version == NULL || oldsym != NULL); sym->init(name, value, symsize, type, binding, visibility, nonvis); if (oldsym != NULL -- 2.7.4