From: Martin Michlmayr Date: Thu, 13 Nov 2008 18:47:18 +0000 (+0000) Subject: c-common.c (warn_about_parentheses): Add missing whitespace X-Git-Tag: releases/gcc-4.4.0~1686 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a231ffe57d357887ff7702b0564f69b5d82fb5fd;p=thirdparty%2Fgcc.git c-common.c (warn_about_parentheses): Add missing whitespace in warning. From-SVN: r141826 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3107d6a55a1..9e60b2bad2b4 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 df8281711e94..e83b58e1d655 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;