c-common.c (warn_about_parentheses): Add missing whitespace
authorMartin Michlmayr <tbm@cyrius.com>
Thu, 13 Nov 2008 18:47:18 +0000 (18:47 +0000)
committerMartin Michlmayr <tbm@gcc.gnu.org>
Thu, 13 Nov 2008 18:47:18 +0000 (18:47 +0000)
in warning.

From-SVN: r141826

gcc/ChangeLog
gcc/c-common.c

index b3107d6..9e60b2b 100644 (file)
@@ -1,3 +1,8 @@
+2008-11-13  Martin Michlmayr  <tbm@cyrius.com>
+
+       * c-common.c (warn_about_parentheses): Add missing whitespace
+       in warning.
+
 2008-11-13  Paul Brook  <paul@codesourcery.com>
 
        * doc/invoke.texi: Document --fix-cortex-m3.
index df82817..e83b58e 100644 (file)
@@ -8116,7 +8116,7 @@ warn_about_parentheses (enum tree_code code,
       /* Check cases like !x | y */
       else if (code_left == TRUTH_NOT_EXPR
               && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
-       warning (OPT_Wparentheses, "suggest parentheses around operand of"
+       warning (OPT_Wparentheses, "suggest parentheses around operand of "
                 "%<!%> or change %<|%> to %<||%> or %<!%> to %<~%>");
       return;
 
@@ -8149,7 +8149,7 @@ warn_about_parentheses (enum tree_code code,
       /* Check cases like !x & y */
       else if (code_left == TRUTH_NOT_EXPR
               && !APPEARS_TO_BE_BOOLEAN_EXPR_P (code_right, arg_right))
-       warning (OPT_Wparentheses, "suggest parentheses around operand of"
+       warning (OPT_Wparentheses, "suggest parentheses around operand of "
                 "%<!%> or change %<&%> to %<&&%> or %<!%> to %<~%>");
       return;