aboutsummaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authorMartin Michlmayr <tbm@cyrius.com>2008-11-13 18:47:18 +0000
committerMartin Michlmayr <tbm@gcc.gnu.org>2008-11-13 18:47:18 +0000
commita231ffe57d357887ff7702b0564f69b5d82fb5fd (patch)
tree23abbf25b3c7802dbc553d149d22417ed907f171 /gcc/c-common.c
parentb1f80fe197efce83705b0a8c92ddb0df4f2fa257 (diff)
downloadgcc-a231ffe57d357887ff7702b0564f69b5d82fb5fd.zip
gcc-a231ffe57d357887ff7702b0564f69b5d82fb5fd.tar.gz
gcc-a231ffe57d357887ff7702b0564f69b5d82fb5fd.tar.bz2
c-common.c (warn_about_parentheses): Add missing whitespace
in warning. From-SVN: r141826
Diffstat (limited to 'gcc/c-common.c')
-rw-r--r--gcc/c-common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c
index df82817..e83b58e 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;