Browse Source

* config/tc-cris.c (md_apply_fix3): Cast value, not pointer, in

val assignment.
binutils-2_12-branch
Hans-Peter Nilsson 25 years ago
parent
commit
451a1fc524
  1. 5
      gas/ChangeLog
  2. 5
      gas/config/tc-cris.c

5
gas/ChangeLog

@ -1,3 +1,8 @@
2001-11-17 Hans-Peter Nilsson <hp@axis.com>
* config/tc-cris.c (md_apply_fix3): Cast value, not pointer, in
val assignment.
2001-11-16 Alan Modra <amodra@bigpond.net.au>
* config/tc-m68k.c (md_apply_fix3): Change val back to a signed type.

5
gas/config/tc-cris.c

@ -2978,7 +2978,10 @@ md_apply_fix3 (fixP, valP, seg)
valueT *valP;
segT seg;
{
long val = * (long *) valP;
/* This assignment truncates upper bits if valueT is 64 bits (as with
--enable-64-bit-bfd), which is fine here, though we cast to avoid
compiler any warnings. */
long val = (long) *valP;
char *buf = fixP->fx_where + fixP->fx_frag->fr_literal;
if (fixP->fx_addsy == 0 && !fixP->fx_pcrel)

Loading…
Cancel
Save