From: Nick Clifton Date: Fri, 18 Feb 2000 18:45:28 +0000 (+0000) Subject: Add a symbol's value to the computed frag offset, rather than overwriting it. X-Git-Tag: gdb_5_0-2000-04-10-branchpoint~553 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c8281f46f707b415184bd8bc1f23dcdf03fd37c;p=external%2Fbinutils.git Add a symbol's value to the computed frag offset, rather than overwriting it. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 08c005e..8eeb49b 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2000-02-18 Nick Clifton + + * config/tc-d10v.c (find_opcode): Add a symbol's value to + the computed frag offset, rather than overwriting it. + Thu Feb 17 00:11:08 2000 J"orn Rennecke * config/tc-sh.c ("elf/sh.h"): Include. diff --git a/gas/config/tc-d10v.c b/gas/config/tc-d10v.c index 4549a95..d20ae10 100644 --- a/gas/config/tc-d10v.c +++ b/gas/config/tc-d10v.c @@ -1253,7 +1253,7 @@ find_opcode (opcode, myops) value = S_GET_VALUE(myops[opnum].X_add_symbol) - value - (obstack_next_free(&frchain_now->frch_obstack) - frag_now->fr_literal); else - value = S_GET_VALUE(myops[opnum].X_add_symbol); + value += S_GET_VALUE(myops[opnum].X_add_symbol); if (AT_WORD_P (&myops[opnum])) {