diff options
-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) { |