+Thu Jan 6 18:05:21 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
+
+ * config/tc-sparc.c (tc_gen_reloc): Fix handling of addends in
+ non-pcrel_offset relocations.
+
Thu Jan 6 01:06:40 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
* config/tc-mips.c (mips_ip): Warn about using $1 as well as $at
/* @@ Why fx_addnumber sometimes and fx_offset other times? */
if (reloc->howto->pc_relative == 0)
reloc->addend = fixp->fx_addnumber;
- else if (reloc->howto->pcrel_offset)
- reloc->addend = fixp->fx_offset - reloc->address;
else
- reloc->addend = fixp->fx_offset;
+ reloc->addend = fixp->fx_offset - reloc->address;
return reloc;
}