Fix md_apply_fix3 typo.
This commit is contained in:
parent
f021c2a7b7
commit
a6567fe028
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2001-11-20 Nick Clifton <nickc@cambridge.redhat.com>
|
||||||
|
|
||||||
|
* config/tc-avr.c (md_apply_fix3): Fix typo introduced by
|
||||||
|
md_apply_fix3 change.
|
||||||
|
|
||||||
2001-11-20 Ben Elliston <bje@redhat.com>
|
2001-11-20 Ben Elliston <bje@redhat.com>
|
||||||
|
|
||||||
* config/tc-m88k.c (md_apply_fix3): Match local variable `val' to
|
* config/tc-m88k.c (md_apply_fix3): Match local variable `val' to
|
||||||
|
|
|
@ -838,7 +838,7 @@ md_apply_fix3 (fixP, valP, seg)
|
||||||
|
|
||||||
if (fixP->fx_addsy && (s == seg || s == absolute_section))
|
if (fixP->fx_addsy && (s == seg || s == absolute_section))
|
||||||
{
|
{
|
||||||
value = S_GET_VALUE (fixP->fx_addsy) + *valuep;
|
value += S_GET_VALUE (fixP->fx_addsy);
|
||||||
fixP->fx_done = 1;
|
fixP->fx_done = 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue