Browse Source

Add a symbol's value to the computed frag offset, rather than overwriting it.

gdb-premipsmulti-2000-06-06-branch
Nick Clifton 27 years ago
parent
commit
8c8281f46f
  1. 5
      gas/ChangeLog
  2. 2
      gas/config/tc-d10v.c

5
gas/ChangeLog

@ -1,3 +1,8 @@
2000-02-18 Nick Clifton <nickc@cygnus.com>
* 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 <amylaar@cygnus.co.uk>
* config/tc-sh.c ("elf/sh.h"): Include.

2
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]))
{

Loading…
Cancel
Save