diff options
author | Nick Clifton <nickc@redhat.com> | 2002-10-23 10:34:18 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-10-23 10:34:18 +0000 |
commit | 8df7094c00913c6823914e988a4aafaa57a8b6d9 (patch) | |
tree | ccec5d7aee47bc048c7fddf7c9f3ef580725df8d | |
parent | 1cd2bb725b5146c5d4ae1f0faf02f0155ed54dfb (diff) | |
download | fsf-binutils-gdb-8df7094c00913c6823914e988a4aafaa57a8b6d9.zip fsf-binutils-gdb-8df7094c00913c6823914e988a4aafaa57a8b6d9.tar.gz fsf-binutils-gdb-8df7094c00913c6823914e988a4aafaa57a8b6d9.tar.bz2 |
Allow an absolute reference to _GLOBAL_TABLE_OFFSET_ to be converted into
a GOT reloc.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-arm.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 9af2e5b..247590d 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-10-23 Nick Clifton <nickc@redhat.com> + + * config/tc-arm.c (tc_gen_reloc): Allow an absolute reference to + _GLOBAL_TABLE_OFFSET_ to be converted into a GOT reloc. + 2002-10-23 Hans-Peter Nilsson <hp@bitrange.com> * config/tc-mmix.h (mmix_frob_file_before_adjust): Don't declare. diff --git a/gas/config/tc-arm.c b/gas/config/tc-arm.c index 17425e5..1205866 100644 --- a/gas/config/tc-arm.c +++ b/gas/config/tc-arm.c @@ -10339,7 +10339,7 @@ tc_gen_reloc (section, fixp) } #ifdef OBJ_ELF - if (code == BFD_RELOC_32_PCREL + if ((code == BFD_RELOC_32_PCREL || code == BFD_RELOC_32) && GOT_symbol && fixp->fx_addsy == GOT_symbol) { |