* config/tc-mips.c (tc_gen_reloc): Fix typo in handling of

GOT_LO16 on NEWABI.
This commit is contained in:
Alexandre Oliva 2002-11-18 20:41:03 +00:00
parent 0c5e171aed
commit 6b70243f72
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2002-11-18 Alexandre Oliva <aoliva@redhat.com>, Chris Demetriou <cgd@broadcom.com>
* config/tc-mips.c (tc_gen_reloc): Fix typo in handling of
GOT_LO16 on NEWABI.
2002-11-18 Svein E. Seldal <Svein.Seldal@solidas.com>
* config/tc-tic4x.c: Fixed proper commandline

View File

@ -13229,7 +13229,7 @@ tc_gen_reloc (section, fixp)
abort ();
/* newabi uses R_MIPS_GOT_DISP for local symbols */
if (HAVE_NEWABI && BFD_RELOC_MIPS_GOT_LO16)
if (HAVE_NEWABI && fixp->fx_r_type == BFD_RELOC_MIPS_GOT_LO16)
{
fixp->fx_r_type = BFD_RELOC_MIPS_GOT_DISP;
retval[1] = NULL;