Browse Source

* config/tc-mips.c (md_convert_frag): Remove a call to

S_GET_VALUE and use the result of resolve_symbol_value as the
	value of the symbol processed in MIPS16 relaxation.
gdb_7_3-branch
Maciej W. Rozycki 16 years ago
parent
commit
5f5f22c0ce
  1. 6
      gas/ChangeLog
  2. 3
      gas/config/tc-mips.c

6
gas/ChangeLog

@ -1,3 +1,9 @@
2010-12-01 Richard Sandiford <rdsandiford@googlemail.com>
* config/tc-mips.c (md_convert_frag): Remove a call to
S_GET_VALUE and use the result of resolve_symbol_value as the
value of the symbol processed in MIPS16 relaxation.
2010-11-30 Joel Sherrill <joel.sherrill@oarcorp.com>
* configure.tgt: Add sparc64-rtems.

3
gas/config/tc-mips.c

@ -14548,8 +14548,7 @@ md_convert_frag (bfd *abfd ATTRIBUTE_UNUSED, segT asec, fragS *fragp)
ext = FALSE;
}
resolve_symbol_value (fragp->fr_symbol);
val = S_GET_VALUE (fragp->fr_symbol);
val = resolve_symbol_value (fragp->fr_symbol);
if (op->pcrel)
{
addressT addr;

Loading…
Cancel
Save