diff options
author | Ken Raeburn <raeburn@cygnus> | 1994-01-06 23:17:44 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1994-01-06 23:17:44 +0000 |
commit | fd0e2cf2d56e6adabdc0000f6afbb037c954812d (patch) | |
tree | 31b30070759d34a2a54b874a770c8d268cb8f18b | |
parent | d8a66e60cd8468ed1a4cde59963cbe62a5e50da4 (diff) | |
download | gdb-fd0e2cf2d56e6adabdc0000f6afbb037c954812d.zip gdb-fd0e2cf2d56e6adabdc0000f6afbb037c954812d.tar.gz gdb-fd0e2cf2d56e6adabdc0000f6afbb037c954812d.tar.bz2 |
fix sparc-solaris reloc bug
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-sparc.c | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 0e268dc..c5502ec 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +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 diff --git a/gas/config/tc-sparc.c b/gas/config/tc-sparc.c index 1a05748..2480300 100644 --- a/gas/config/tc-sparc.c +++ b/gas/config/tc-sparc.c @@ -2076,10 +2076,8 @@ tc_gen_reloc (section, fixp) /* @@ 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; } |