One of the supplied argument strings is unneccesarily long (c-sky, using
basically the same code, fixed it to a shorter length) and this fixes overflow
warnings, as GCC fails to deduce that the full 256 bytes for load_op[] are
not used at all.
gcc/ChangeLog:
* config/mcore/mcore.cc (output_inline_const) Make buffer smaller to
silence overflow warnings later on.
int trick_no;
rtx out_operands[3];
char buf[256];
- char load_op[256];
+ char load_op[128];
const char *dst_fmt;
HOST_WIDE_INT value;