summaryrefslogtreecommitdiff
path: root/bfd/elf32-mips.c
diff options
context:
space:
mode:
authorNathan Sidwell <nathan@codesourcery.com>2009-02-12 08:28:19 +0000
committerNathan Sidwell <nathan@codesourcery.com>2009-02-12 08:28:19 +0000
commit4c87f83732cb073b1920a95004a2875bce1bf56a (patch)
treea8171893bd082f02c7129958b2b1bc2f0b651d45 /bfd/elf32-mips.c
parentb22f73e5efc5814f816e312fb3565652980be6bd (diff)
downloadbinutils-redhat-4c87f83732cb073b1920a95004a2875bce1bf56a.tar.gz
* elf32-mips.c (mips_elf_final_gp): Don't add 0x4000 offset for
relocatable link.
Diffstat (limited to 'bfd/elf32-mips.c')
-rw-r--r--bfd/elf32-mips.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bfd/elf32-mips.c b/bfd/elf32-mips.c
index 6c09ce5c45..c928586d11 100644
--- a/bfd/elf32-mips.c
+++ b/bfd/elf32-mips.c
@@ -1005,7 +1005,7 @@ mips_elf_final_gp (bfd *output_bfd, asymbol *symbol, bfd_boolean relocatable,
if (relocatable)
{
/* Make up a value. */
- *pgp = symbol->section->output_section->vma + 0x4000;
+ *pgp = symbol->section->output_section->vma /*+ 0x4000*/;
_bfd_set_gp_value (output_bfd, *pgp);
}
else if (!mips_elf_assign_gp (output_bfd, pgp))