https://gcc.gnu.org/bugzilla/show_bug.cgi?id=62111
--- Comment #13 from dhowells at redhat dot com <dhowells at redhat dot com> --- (In reply to Segher Boessenkool from comment #11) > Re: #c7: > > In sh.c, change "char amount[6]" to "signed char > amount[6]" -- does that help? That shouldn't make any difference to a compiler hosted on x86_64, as char is signed there by default. Did you mean change it to "unsigned char amount[6]"?