OSDN Git Service

* archive.cc (Archive::add_symbols): Only look up a symbol without
authorian <ian>
Wed, 16 Dec 2009 07:05:22 +0000 (07:05 +0000)
committerian <ian>
Wed, 16 Dec 2009 07:05:22 +0000 (07:05 +0000)
a version if there is, in fact, a version.

gold/ChangeLog
gold/archive.cc

index 03e03ae..7084de8 100644 (file)
@@ -1,3 +1,8 @@
+2009-12-15  Ian Lance Taylor  <iant@google.com>
+
+       * archive.cc (Archive::add_symbols): Only look up a symbol without
+       a version if there is, in fact, a version.
+
 2009-12-14  Ian Lance Taylor  <iant@google.com>
 
        Revert -Wshadow changes, all changes from:
index 569a491..011c36d 100644 (file)
@@ -688,6 +688,7 @@ Archive::add_symbols(Symbol_table* symtab, Layout* layout,
 
          Symbol* sym = symtab->lookup(sym_name, ver);
          if (def
+             && ver != NULL
              && (sym == NULL
                  || !sym->is_undefined()
                  || sym->binding() == elfcpp::STB_WEAK))