diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3107d6a55a..9e60b2bad2b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2008-11-13 Martin Michlmayr + + * c-common.c (warn_about_parentheses): Add missing whitespace + in warning. + 2008-11-13 Paul Brook * doc/invoke.texi: Document --fix-cortex-m3. diff --git a/gcc/c-common.c b/gcc/c-common.c index df8281711e9..e83b58e1d65 100644 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -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;