aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Beaumont-Gay <matthewbg@google.com>2012-10-24 01:14:28 +0000
committerMatt Beaumont-Gay <matthewbg@google.com>2012-10-24 01:14:28 +0000
commit6d919fb67bf6aa3db09608fb2948b558977c6929 (patch)
treee955eb1aa915754e9c25d3878c6c5e42c7e55b40
parentfa60be028105ded3c05d9fcc6cb0974500a5a011 (diff)
Address feedback from Eli Friedman on r166522.
In particular, we do want to warn on some unused cast subexpressions within macros. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@166534 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/AST/Expr.cpp8
-rw-r--r--test/Sema/unused-expr.c12
2 files changed, 12 insertions, 8 deletions
diff --git a/lib/AST/Expr.cpp b/lib/AST/Expr.cpp
index 68bce4b6f6..6f4c8e2637 100644
--- a/lib/AST/Expr.cpp
+++ b/lib/AST/Expr.cpp
@@ -2026,10 +2026,6 @@ bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
}
case CXXFunctionalCastExprClass:
case CStyleCastExprClass: {
- // Ignore casts within macro expansions.
- if (getExprLoc().isMacroID())
- return false;
-
// Ignore an explicit cast to void unless the operand is a non-trivial
// volatile lvalue.
const CastExpr *CE = cast<CastExpr>(this);
@@ -2047,6 +2043,10 @@ bool Expr::isUnusedResultAWarning(const Expr *&WarnE, SourceLocation &Loc,
return false;
}
+ // Ignore casts within macro expansions.
+ if (getExprLoc().isMacroID())
+ return CE->getSubExpr()->isUnusedResultAWarning(WarnE, Loc, R1, R2, Ctx);
+
// If this is a cast to a constructor conversion, check the operand.
// Otherwise, the result of the cast is unused.
if (CE->getCastKind() == CK_ConstructorConversion)
diff --git a/test/Sema/unused-expr.c b/test/Sema/unused-expr.c
index 6677e48300..aa81febdbb 100644
--- a/test/Sema/unused-expr.c
+++ b/test/Sema/unused-expr.c
@@ -123,9 +123,13 @@ void f(int i, ...) {
// PR8371
int fn5() __attribute__ ((__const));
-// OpenSSL has some macros like this.
-#define M(a, b) (long)foo((a), (b))
+// OpenSSL has some macros like this; we shouldn't warn on the cast.
+#define M1(a, b) (long)foo((a), (b))
+// But, we should still warn on other subexpressions of casts in macros.
+#define M2 (long)0;
void t11(int i, int j) {
- M(i, j); // no warning
+ M1(i, j); // no warning
+ M2; // expected-warning {{expression result unused}}
}
-#undef M
+#undef M1
+#undef M2