Whitelist operator== and operator!= as valid for unused value warnings,

even when overloaded and user-defined. These operators are both more
valuable to warn on (due to likely typos) and extremely unlikely to be
reasonable for use to trigger side-effects.

llvm-svn: 137823
This commit is contained in:
Chandler Carruth 2011-08-17 09:49:44 +00:00
parent e2669397f1
commit 463394752b
4 changed files with 24 additions and 11 deletions

View File

@ -1524,8 +1524,21 @@ bool Expr::isUnusedResultAWarning(SourceLocation &Loc, SourceRange &R1,
R2 = cast<ArraySubscriptExpr>(this)->getRHS()->getSourceRange();
return true;
case CXXOperatorCallExprClass: {
// We warn about operator== and operator!= even when user-defined operator
// overloads as there is no reasonable way to define these such that they
// have non-trivial, desirable side-effects. See the -Wunused-comparison
// warning: these operators are commonly typo'ed, and so warning on them
// provides additional value as well. If this list is updated,
// DiagnoseUnusedComparison should be as well.
const CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(this);
if (Op->getOperator() == OO_EqualEqual ||
Op->getOperator() == OO_ExclaimEqual)
return true;
// Fallthrough for generic call handling.
}
case CallExprClass:
case CXXOperatorCallExprClass:
case CXXMemberCallExprClass: {
// If this is a direct call, get the callee.
const CallExpr *CE = cast<CallExpr>(this);

View File

@ -36,7 +36,7 @@ A make_A();
bool operator==(A&, Z&); // expected-note 3{{candidate function}}
void h(A a, const A ac, Z z) {
make_A() == z;
make_A() == z; // expected-warning{{equality comparison result unused}}
a == z; // expected-error{{use of overloaded operator '==' is ambiguous}}
ac == z; // expected-error{{invalid operands to binary expression ('const A' and 'Z')}}
}
@ -45,7 +45,7 @@ struct B {
bool operator==(const B&) const;
void test(Z z) {
make_A() == z;
make_A() == z; // expected-warning{{equality comparison result unused}}
}
};

View File

@ -19,13 +19,13 @@ void test() {
p == p; // expected-warning {{equality comparison result unused}} \
// expected-note {{use '=' to turn this equality comparison into an assignment}} \
// expected-warning {{self-comparison always evaluates to true}}
a == a; // FIXME: missing-warning {{equality comparison result unused}} \
// FIXME: missing-note {{use '=' to turn this equality comparison into an assignment}}
a == b; // FIXME: missing-warning {{equality comparison result unused}} \
// FIXME: missing-note {{use '=' to turn this equality comparison into an assignment}}
a != b; // FIXME: missing-warning {{inequality comparison result unused}} \
// FIXME: missing-note {{use '|=' to turn this inequality comparison into an or-assignment}}
A() == b; // FIXME: missing-warning {{equality comparison result unused}}
a == a; // expected-warning {{equality comparison result unused}} \
// expected-note {{use '=' to turn this equality comparison into an assignment}}
a == b; // expected-warning {{equality comparison result unused}} \
// expected-note {{use '=' to turn this equality comparison into an assignment}}
a != b; // expected-warning {{inequality comparison result unused}} \
// expected-note {{use '|=' to turn this inequality comparison into an or-assignment}}
A() == b; // expected-warning {{equality comparison result unused}}
if (42) x == 7; // expected-warning {{equality comparison result unused}} \
// expected-note {{use '=' to turn this equality comparison into an assignment}}
else if (42) x == 7; // expected-warning {{equality comparison result unused}} \

View File

@ -1,4 +1,4 @@
// RUN: %clang_cc1 -fsyntax-only -verify %s
// RUN: %clang_cc1 -fsyntax-only -verify -Wno-unused %s
// Tests that overload resolution is treated as an unevaluated context.
// PR5541