Created attachment 27814 [details] proposed patch Please review the attached patch. It fixes a format string issue in file: gcc/libgcc/config/libbid/bid128_string.c This patch replaces the format string in an sprintf expression from %u to %d: len += sprintf (str + len, "%u", exp); because the variable exp is of type int, which requires %d. Best regards Ettl Martin