aboutsummaryrefslogtreecommitdiff
path: root/gold/mips.cc
diff options
context:
space:
mode:
authorCary Coutant <ccoutant@gmail.com>2016-05-19 14:58:18 -0700
committerCary Coutant <ccoutant@gmail.com>2016-05-19 15:05:03 -0700
commit6eeb0170bbb43ffb73e8f01b8b481adde8194c21 (patch)
treed01fc9c0add92397bb2af0b2bb308b2cb3d7ab57 /gold/mips.cc
parent15eb1bebe1525ba8baf1f56e9df791cff146a352 (diff)
downloadfsf-binutils-gdb-6eeb0170bbb43ffb73e8f01b8b481adde8194c21.zip
fsf-binutils-gdb-6eeb0170bbb43ffb73e8f01b8b481adde8194c21.tar.gz
fsf-binutils-gdb-6eeb0170bbb43ffb73e8f01b8b481adde8194c21.tar.bz2
Don't allow COPY relocations for protected symbols.
gold/ PR gold/19823 * copy-relocs.cc (Copy_relocs::make_copy_reloc): Add object parameter; check for protected symbol. * copy-relocs.h (Copy_relocs::make_copy_reloc): Add object parameter. * mips.cc (Mips_copy_relocs): Adjust call to make_copy_reloc. * symtab.cc (Symbol::init_fields): Initialize is_protected_. (Symbol_table::add_from_dynobj): Mark protected symbols. * symtab.h (Symbol::is_protected): New method. (Symbol::set_is_protected): New method. (Symbol::is_protected_): New data member. * testsuite/Makefile.am (copy_test_protected): New test. * testsuite/Makefile.in: Regenerate. * testsuite/copy_test.cc (main): Add legal reference to protected symbol. * testsuite/copy_test_v1.cc (main): Likewise. * testsuite/copy_test_2.cc (ip): Add protected symbol. * testsuite/copy_test_protected.cc: New test source file. * testsuite/copy_test_protected.sh: New test script.
Diffstat (limited to 'gold/mips.cc')
-rw-r--r--gold/mips.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/gold/mips.cc b/gold/mips.cc
index e622e29..b8c74d0 100644
--- a/gold/mips.cc
+++ b/gold/mips.cc
@@ -7766,6 +7766,7 @@ Mips_copy_relocs<sh_type, size, big_endian>::emit_entry(
else
this->make_copy_reloc(symtab, layout,
static_cast<Sized_symbol<size>*>(entry.sym_),
+ entry.relobj_,
reloc_section);
}