]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
PowerPC gold assertion on missing global entry stub
authorAlan Modra <amodra@gmail.com>
Tue, 28 Apr 2015 03:58:29 +0000 (13:28 +0930)
committerAlan Modra <amodra@gmail.com>
Fri, 5 Jun 2015 14:38:22 +0000 (00:08 +0930)
Global entry stubs are used on ELFv2 to provide addresses for
functions not defined in a non-PIC executable but whose address is
taken, in much the same way as PLT stub code is used on other
targets to provide function addresses.  We don't want to insert a
global entry stub just because (bogus) debug info refers to the
address of a non-local function, but we also don't want gold to die.

* powerpc.cc (Target_powerpc::Relocate::relocate): Don't assert
on missing global entry stub due to bogus debug info.

gold/ChangeLog
gold/powerpc.cc

index b2225e0b0857575e3dae0e00febd75c6b224b917..f554ee86044732f053fc5447b55e412b5c6643be 100644 (file)
@@ -1,6 +1,10 @@
 2015-06-05  Alan Modra  <amodra@gmail.com>
 
        Apply from master
+       2015-04-28  Alan Modra  <amodra@gmail.com>
+       * powerpc.cc (Target_powerpc::Relocate::relocate): Don't assert
+       on missing global entry stub due to bogus debug info.
+
        2015-03-24  Alan Modra  <amodra@gmail.com>
        PR 18147
        * powerpc.cc (Target_powerpc::Relocate::relocate): Don't report
index e7f35540138959ee84622c9d825265b4f489918f..3766f727b4154e88b09d3dce61af6f76173c8e9d 100644 (file)
@@ -6748,8 +6748,11 @@ Target_powerpc<size, big_endian>::Relocate::relocate(
          && !is_branch_reloc(r_type))
        {
          unsigned int off = target->glink_section()->find_global_entry(gsym);
-         gold_assert(off != (unsigned int)-1);
-         value = target->glink_section()->global_entry_address() + off;
+         if (off != (unsigned int)-1)
+           {
+             value = target->glink_section()->global_entry_address() + off;
+             has_stub_value = true;
+           }
        }
       else
        {
@@ -6771,8 +6774,8 @@ Target_powerpc<size, big_endian>::Relocate::relocate(
                                                  rela.get_r_addend());
          gold_assert(off != invalid_address);
          value = stub_table->stub_address() + off;
+         has_stub_value = true;
        }
-      has_stub_value = true;
     }
 
   if (r_type == elfcpp::R_POWERPC_GOT16