diff mbox series

[Committed] IBM Z: Fix error format string.

Message ID 20200306085811.10486-1-krebbel@linux.ibm.com
State New
Headers show
Series [Committed] IBM Z: Fix error format string. | expand

Commit Message

Andreas Krebbel March 6, 2020, 8:58 a.m. UTC
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 | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

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;
     }
 })