summaryrefslogtreecommitdiff
path: root/gcc/c-common.c
diff options
context:
space:
mode:
authortbm <tbm@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-13 18:47:18 +0000
committertbm <tbm@138bc75d-0d04-0410-961f-82ee72b054a4>2008-11-13 18:47:18 +0000
commit96bda40f8f639fe66dc1b84659578e575f4140d5 (patch)
tree23abbf25b3c7802dbc553d149d22417ed907f171 /gcc/c-common.c
parent6f92235db66c6ea1215202b063ce80813b728d7c (diff)
downloadgcc-96bda40f8f639fe66dc1b84659578e575f4140d5.tar.gz
c-common.c (warn_about_parentheses): Add missing whitespace
in warning. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@141826 138bc75d-0d04-0410-961f-82ee72b054a4
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 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;