diff options
author | Ian Lance Taylor <ian@airs.com> | 2008-09-16 17:23:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2008-09-16 17:23:37 +0000 |
commit | 9c2d0ef98abc05ea6fae35be6db732b22bba71b5 (patch) | |
tree | ec947c7c91f54839a27dc26623b8cde1e3d11d45 /gold/x86_64.cc | |
parent | de31bda5f611b1092f12d3db8c2ffcbb125c86fb (diff) | |
download | gdb-9c2d0ef98abc05ea6fae35be6db732b22bba71b5.zip gdb-9c2d0ef98abc05ea6fae35be6db732b22bba71b5.tar.gz gdb-9c2d0ef98abc05ea6fae35be6db732b22bba71b5.tar.bz2 |
* target-reloc.h (relocate_section): Check whether a symbol is
defined by the ABI before reporting an undefined symbol error.
* target.h (Target::is_defined_by_abi): Make parameter const.
(Target::do_is_defined_by_abi): Likewise.
* i386.cc (Target_i386::do_is_defined_by_abi): Likewise.
* powerpc.cc (Target_powerpc::do_is_defined_by_abi): Likewise.
* sparc.cc (Target_sparc::do_is_defined_by_abi): Likewise.
* x86_64.cc (Target_x86_64::do_is_defined_by_abi): Likewise.
* testsuite/Makefile.am (tls_test_shared.so): Add -Wl,-z,defs.
* testsuite/Makefile.in: Rebuild.
Diffstat (limited to 'gold/x86_64.cc')
-rw-r--r-- | gold/x86_64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/x86_64.cc b/gold/x86_64.cc index 46c4a22..69f76a0 100644 --- a/gold/x86_64.cc +++ b/gold/x86_64.cc @@ -139,7 +139,7 @@ class Target_x86_64 : public Sized_target<64, false> // Return whether SYM is defined by the ABI. bool - do_is_defined_by_abi(Symbol* sym) const + do_is_defined_by_abi(const Symbol* sym) const { return strcmp(sym->name(), "__tls_get_addr") == 0; } // Return the size of the GOT section. |