Fix regression introduced by fix for PR 18703.
authorCary Coutant <ccoutant@gmail.com>
Wed, 26 Aug 2015 00:53:53 +0000 (17:53 -0700)
committerCary Coutant <ccoutant@gmail.com>
Wed, 26 Aug 2015 00:53:53 +0000 (17:53 -0700)
When a user object overrides a versioned definition in a shared object,
it's possible to trigger an internal error because the versioned
definition we saw didn't override the unversioned definition. This
was introduced by the fix for PR 18703. This patch fixes the problem
by reordering the tests so that we do not check ret->is_default()
until we're confident that the symbol is in fact versioned.

gold/
PR gold/18866
PR gold/18703
* symtab.cc (Symbol_table): Reorder conditions to avoid internal error.

gold/ChangeLog
gold/symtab.cc

index b3417b2149dd41c7d8d8f0350d2673da1231a4a6..5190e7e0d1b0610c06e24c9a57af68561f597eee 100644 (file)
@@ -1,3 +1,9 @@
+2015-08-25  Cary Coutant  <ccoutant@gmail.com>
+
+       PR gold/18866
+       PR gold/18703
+       * symtab.cc (Symbol_table): Reorder conditions to avoid internal error.
+
 2015-08-20  Alan Modra  <amodra@gmail.com>
 
        PR gold/18846
index 7e30fbf74661f90427e4903ca4de56e1f4a0508b..c6b47b05ca050399d1f6ab92f0618c8f726c3fa8 100644 (file)
@@ -998,26 +998,28 @@ Symbol_table::add_from_object(Object* object,
       if (is_default_version)
        this->define_default_version<size, big_endian>(ret, insdefault.second,
                                                       insdefault.first);
-      else if (version != NULL && ret->is_default())
+      else
        {
-         // We have seen NAME/VERSION already, and marked it as the
-         // default version, but now we see a definition for
-         // NAME/VERSION that is not the default version. This can
-         // happen when the assembler generates two symbols for
-         // a symbol as a result of a ".symver foo,foo@VER"
-         // directive. We see the first unversioned symbol and
-         // we may mark it as the default version (from a
-         // version script); then we see the second versioned
-         // symbol and we need to override the first.
-         // In any other case, the two symbols should have generated
-         // a multiple definition error.
-         // (See PR gold/18703.)
          bool dummy;
-         if (ret->source() == Symbol::FROM_OBJECT
+         if (version != NULL
+             && ret->source() == Symbol::FROM_OBJECT
              && ret->object() == object
              && is_ordinary
-             && ret->shndx(&dummy) == st_shndx)
+             && ret->shndx(&dummy) == st_shndx
+             && ret->is_default())
            {
+             // We have seen NAME/VERSION already, and marked it as the
+             // default version, but now we see a definition for
+             // NAME/VERSION that is not the default version. This can
+             // happen when the assembler generates two symbols for
+             // a symbol as a result of a ".symver foo,foo@VER"
+             // directive. We see the first unversioned symbol and
+             // we may mark it as the default version (from a
+             // version script); then we see the second versioned
+             // symbol and we need to override the first.
+             // In any other case, the two symbols should have generated
+             // a multiple definition error.
+             // (See PR gold/18703.)
              ret->set_is_not_default();
              const Stringpool::Key vnull_key = 0;
              this->table_.erase(std::make_pair(name_key, vnull_key));
This page took 0.032999 seconds and 4 git commands to generate.