From: Hans Wennborg Date: Mon, 12 Sep 2011 12:07:30 +0000 (+0000) Subject: Silence ?: precendence warning when parenthesis are present. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb4d7c202e74783d9c820f155ae27605aa9f5c16;p=clang Silence ?: precendence warning when parenthesis are present. Fixes PR10898. The warning should be silent when there are parenthesis around the condition expression. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@139492 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Sema/SemaExpr.cpp b/lib/Sema/SemaExpr.cpp index 1828841b30..99c881fe5c 100644 --- a/lib/Sema/SemaExpr.cpp +++ b/lib/Sema/SemaExpr.cpp @@ -4926,9 +4926,10 @@ static bool IsArithmeticOp(BinaryOperatorKind Opc) { /// expression. static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode, Expr **RHSExprs) { - E = E->IgnoreParenImpCasts(); + // Don't strip parenthesis: we should not warn if E is in parenthesis. + E = E->IgnoreImpCasts(); E = E->IgnoreConversionOperator(); - E = E->IgnoreParenImpCasts(); + E = E->IgnoreImpCasts(); // Built-in binary operator. if (BinaryOperator *OP = dyn_cast(E)) { diff --git a/test/Sema/parentheses.c b/test/Sema/parentheses.c index 13ea3ecbe1..9751336018 100644 --- a/test/Sema/parentheses.c +++ b/test/Sema/parentheses.c @@ -52,6 +52,8 @@ void conditional_op(int x, int y, _Bool b) { // expected-note {{place parentheses around the '?:' expression to evaluate it first}} \ // expected-note {{place parentheses around the '+' expression to silence this warning}} + (void)((x + someConditionFunc()) ? 1 : 2); // no warning + (void)(x - b ? 1 : 2); // expected-warning {{operator '?:' has lower precedence than '-'}} \ // expected-note {{place parentheses around the '?:' expression to evaluate it first}} \ // expected-note {{place parentheses around the '-' expression to silence this warning}} @@ -64,7 +66,6 @@ void conditional_op(int x, int y, _Bool b) { // expected-note {{place parentheses around the '?:' expression to evaluate it first}} \ // expected-note {{place parentheses around the '/' expression to silence this warning}} - (void)(x % 2 ? 1 : 2); // no warning } diff --git a/test/Sema/parentheses.cpp b/test/Sema/parentheses.cpp index 252455dcad..767416677e 100644 --- a/test/Sema/parentheses.cpp +++ b/test/Sema/parentheses.cpp @@ -40,6 +40,8 @@ void test(S *s, bool (S::*m_ptr)()) { // expected-note {{place parentheses around the '?:' expression to evaluate it first}} \ // expected-note {{place parentheses around the '+' expression to silence this warning}} + (void)((*s + true) ? "foo" : "bar"); // No warning. + // Don't crash on unusual member call expressions. (void)((s->*m_ptr)() ? "foo" : "bar"); }