From: Andreas Krebbel Date: Fri, 6 Mar 2020 08:51:34 +0000 (+0100) Subject: Fix error format string. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=655e5c29ae4080666154b3e10ac81116a1b7a638;p=gcc.git Fix error format string. gcc/ChangeLog: 2020-03-06 Andreas Krebbel * config/s390/s390.md ("tabort"): Get rid of two consecutive blanks in format string. --- diff --git a/gcc/config/s390/s390.md b/gcc/config/s390/s390.md index e37ba49444a..44b59659e20 100644 --- a/gcc/config/s390/s390.md +++ b/gcc/config/s390/s390.md @@ -11931,8 +11931,8 @@ if (CONST_INT_P (operands[0]) && INTVAL (operands[0]) >= 0 && INTVAL (operands[0]) <= 255) { - error ("invalid transaction abort code: %wd; values in range 0 " - "through 255 are reserved", INTVAL (operands[0])); + error ("invalid transaction abort code: %wd (values in range 0 " + "through 255 are reserved)", INTVAL (operands[0])); FAIL; } })