* config/tc-hppa.c (tc_gen_reloc): Fix thinko in ELF version.

This commit is contained in:
Jeff Law 1994-04-05 00:06:46 +00:00
parent c4dd531f11
commit 79381848ca
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
Mon Apr 4 17:06:04 1994 Jeffrey A. Law (law@cygnus.com)
* config/tc-hppa.c (tc_gen_reloc): Fix thinko in ELF version.
Mon Apr 4 12:39:23 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* config/tc-ppc.c (ppc_insert_operand): Check PPC_OPERAND_SIGNED

View File

@ -2774,10 +2774,9 @@ tc_gen_reloc (section, fixp)
break;
default:
if (fixp->fx_addsy && fixp->fx_addsy->bsym->flags & BSF_FUNCTION)
relocs[i]->addend = 0;
reloc->addend = 0;
else
relocs[i]->addend = fixp->fx_addnumber;
break;
reloc->addend = fixp->fx_addnumber;
break;
}
break;