diff options
author | Martin Michlmayr <tbm@cyrius.com> | 2008-11-13 18:47:18 +0000 |
---|---|---|
committer | Martin Michlmayr <tbm@gcc.gnu.org> | 2008-11-13 18:47:18 +0000 |
commit | a231ffe57d357887ff7702b0564f69b5d82fb5fd (patch) | |
tree | 23abbf25b3c7802dbc553d149d22417ed907f171 /gcc/c-common.c | |
parent | b1f80fe197efce83705b0a8c92ddb0df4f2fa257 (diff) | |
download | gcc-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.c | 4 |
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; |