This looks like it was just an oversight.
Fixes http://llvm.org/pr35319
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@318456
91177308-0d34-0410-b5e6-
96231b3b80d8
def warn_empty_if_body : Warning<
"if statement has empty body">, InGroup<EmptyBody>;
+def warn_empty_else_body : Warning<
+ "else clause has empty body">, InGroup<EmptyBody>;
def warn_empty_for_body : Warning<
"for loop has empty body">, InGroup<EmptyBody>;
def warn_empty_range_based_for_body : Warning<
CondExpr->getExprLoc()))
CommaVisitor(*this).Visit(CondExpr);
- if (!elseStmt)
+ if (elseStmt)
+ DiagnoseEmptyStmtBody(ElseLoc, elseStmt, diag::warn_empty_else_body);
+ else
DiagnoseEmptyStmtBody(CondExpr->getLocEnd(), thenStmt,
diag::warn_empty_if_body);
}
}
+void test_if_else(int x) {
+ if (x); // expected-warning{{if statement has empty body}} expected-note{{separate line}}
+
+ if (x)
+ ; // no-warning
+
+ if (x)
+ ; // no-warning
+ else
+ ; // no-warning
+
+ if (x)
+ ; // no-warning
+ else; // expected-warning{{else clause has empty body}} expected-note{{separate line}}
+
+ if (x)
+ ; // no-warning
+ else EMPTY(x); // no-warning
+}
+
void test_errors(int x) {
if (1)
aa; // expected-error{{use of undeclared identifier}}