2008-07-23 Simon Baldwin <simonb@google.com>
authorChris Demetriou <cgd@google.com>
Wed, 23 Jul 2008 16:19:59 +0000 (16:19 +0000)
committerChris Demetriou <cgd@google.com>
Wed, 23 Jul 2008 16:19:59 +0000 (16:19 +0000)
        * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
        to zero for undefined symbols from dynamic libraries.

gold/ChangeLog
gold/symtab.cc

index 8693c76..cb28b25 100644 (file)
@@ -1,3 +1,8 @@
+2008-07-23  Simon Baldwin  <simonb@google.com>
+
+       * symtab.cc (Symbol_table::sized_write_symbol): Only set st_size
+       to zero for undefined symbols from dynamic libraries.
+
 2008-07-23  Ian Lance Taylor  <iant@google.com>
 
        * symtab.cc (Symbol_table::resolve): Remove version parameter.
index e3b0d9d..259004e 100644 (file)
@@ -2354,8 +2354,11 @@ Symbol_table::sized_write_symbol(
   elfcpp::Sym_write<size, big_endian> osym(p);
   osym.put_st_name(pool->get_offset(sym->name()));
   osym.put_st_value(value);
-  // Use a symbol size of zero for undefined symbols.
-  osym.put_st_size(shndx == elfcpp::SHN_UNDEF ? 0 : sym->symsize());
+  // Use a symbol size of zero for undefined symbols from shared libraries.
+  if (shndx == elfcpp::SHN_UNDEF && sym->is_from_dynobj())
+    osym.put_st_size(0);
+  else
+    osym.put_st_size(sym->symsize());
   // A version script may have overridden the default binding.
   if (sym->is_forced_local())
     osym.put_st_info(elfcpp::elf_st_info(elfcpp::STB_LOCAL, sym->type()));