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/target.h | |
parent | de31bda5f611b1092f12d3db8c2ffcbb125c86fb (diff) | |
download | fsf-binutils-gdb-9c2d0ef98abc05ea6fae35be6db732b22bba71b5.zip fsf-binutils-gdb-9c2d0ef98abc05ea6fae35be6db732b22bba71b5.tar.gz fsf-binutils-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/target.h')
-rw-r--r-- | gold/target.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/target.h b/gold/target.h index 30fa008..460ac96 100644 --- a/gold/target.h +++ b/gold/target.h @@ -164,7 +164,7 @@ class Target // Return whether SYM is known to be defined by the ABI. This is // used to avoid inappropriate warnings about undefined symbols. bool - is_defined_by_abi(Symbol* sym) const + is_defined_by_abi(const Symbol* sym) const { return this->do_is_defined_by_abi(sym); } protected: @@ -222,7 +222,7 @@ class Target // Virtual function which may be implemented by the child class. virtual bool - do_is_defined_by_abi(Symbol*) const + do_is_defined_by_abi(const Symbol*) const { return false; } private: |