PR 28215
* config/tc-csky.c (md_apply_fix): Correctly handle a fixup that
involves an overlarge constant.
+2021-08-11 Nick Clifton <nickc@redhat.com>
+
+ PR 28215
+ * config/tc-csky.c (md_apply_fix): Correctly handle a fixup that
+ involves an overlarge constant.
+
2021-08-11 Matt Jacobson <mhjacobson@me.com>
* config/tc-avr.c (enum options): Add option flag.
else if (fixP->fx_size == 1 && val >= -256 && val <= 255)
;
else
- abort ();
+ break;
+
md_number_to_chars (buf, val, fixP->fx_size);
fixP->fx_done = 1;
}