+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.
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)