aboutsummaryrefslogtreecommitdiff
path: root/bfd
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2003-07-04 13:57:14 +0000
committerJakub Jelinek <jakub@redhat.com>2003-07-04 13:57:14 +0000
commit3368a7fb7aed1785abd007308ed0b4feed7c5723 (patch)
tree5efc67cb823fd06ec37c4ab255cc8721bd9f1e72 /bfd
parent9203ba999ff3620ef277840e1cd5344e37cec8ee (diff)
downloadfsf-binutils-gdb-3368a7fb7aed1785abd007308ed0b4feed7c5723.zip
fsf-binutils-gdb-3368a7fb7aed1785abd007308ed0b4feed7c5723.tar.gz
fsf-binutils-gdb-3368a7fb7aed1785abd007308ed0b4feed7c5723.tar.bz2
* elf-bfd.h (SYMBOL_REFERENCES_LOCAL, SYMBOL_CALLS_LOCAL): Return
true even if -pie.
Diffstat (limited to 'bfd')
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/elf-bfd.h4
2 files changed, 7 insertions, 2 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 49c49c2..b9f5970 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,5 +1,10 @@
2003-07-04 Jakub Jelinek <jakub@redhat.com>
+ * elf-bfd.h (SYMBOL_REFERENCES_LOCAL, SYMBOL_CALLS_LOCAL): Return
+ true even if -pie.
+
+2003-07-04 Jakub Jelinek <jakub@redhat.com>
+
* elfxx-ia64.c (struct elfNN_ia64_link_hash_table): Add rel_fptr_sec.
(elfNN_ia64_dynamic_symbol_p): Change info->shared into
!info->executable.
diff --git a/bfd/elf-bfd.h b/bfd/elf-bfd.h
index 1b9ec8a..410e91f 100644
--- a/bfd/elf-bfd.h
+++ b/bfd/elf-bfd.h
@@ -217,7 +217,7 @@ struct elf_link_hash_entry
it's necessary for shared libs to also reference the .plt even
though the symbol is really local to the shared lib. */
#define SYMBOL_REFERENCES_LOCAL(INFO, H) \
- ((! (INFO)->shared \
+ (((INFO)->executable \
|| (INFO)->symbolic \
|| (H)->dynindx == -1 \
|| ELF_ST_VISIBILITY ((H)->other) == STV_INTERNAL \
@@ -227,7 +227,7 @@ struct elf_link_hash_entry
/* Will _calls_ to this symbol always call the version in this object? */
#define SYMBOL_CALLS_LOCAL(INFO, H) \
- ((! (INFO)->shared \
+ (((INFO)->executable \
|| (INFO)->symbolic \
|| (H)->dynindx == -1 \
|| ELF_ST_VISIBILITY ((H)->other) != STV_DEFAULT \