Fix error format string.
authorAndreas Krebbel <krebbel@linux.ibm.com>
Fri, 6 Mar 2020 08:51:34 +0000 (09:51 +0100)
committerAndreas Krebbel <krebbel@linux.ibm.com>
Fri, 6 Mar 2020 08:51:43 +0000 (09:51 +0100)
gcc/ChangeLog:

2020-03-06  Andreas Krebbel  <krebbel@linux.ibm.com>

* config/s390/s390.md ("tabort"): Get rid of two consecutive
blanks in format string.

gcc/config/s390/s390.md

index e37ba49444a3569ecdc129493a0cb74b078caf8f..44b59659e20248b1f13643d17cd0dd93987329aa 100644 (file)
   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;
     }
 })