Support for [class.local]p4.

llvm-svn: 74030
This commit is contained in:
Anders Carlsson 2009-06-24 00:28:53 +00:00
parent ecdab5406d
commit d2e8adfc75
4 changed files with 21 additions and 1 deletions

View File

@ -1608,6 +1608,8 @@ def err_reference_to_local_var_in_enclosing_function : Error<
"reference to local variable %0 declared in enclosed function %1">;
def note_local_variable_declared_here : Note<
"%0 declared here">;
def err_static_data_member_not_allowed_in_local_class : Error<
"static data member %0 not allowed in local class %1">;
// C++ derived classes
def err_base_clause_on_union : Error<"unions cannot have base classes">;

View File

@ -1807,6 +1807,15 @@ Sema::ActOnVariableDeclarator(Scope* S, Declarator& D, DeclContext* DC,
} else if (SC == VarDecl::None)
SC = VarDecl::Static;
}
if (SC == VarDecl::Static) {
if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(DC)) {
if (RD->isLocalClass())
Diag(D.getIdentifierLoc(),
diag::err_static_data_member_not_allowed_in_local_class)
<< Name << RD->getDeclName();
}
}
// The variable can not
NewVD = VarDecl::Create(Context, DC, D.getIdentifierLoc(),

View File

@ -835,7 +835,6 @@ static bool IsReturnCopyElidable(ASTContext &Ctx, QualType RetType,
Action::OwningStmtResult
Sema::ActOnReturnStmt(SourceLocation ReturnLoc, FullExprArg rex) {
bool RetValExprIsValid = !rex->isInvalid();
Expr *RetValExp = rex->takeAs<Expr>();
if (CurBlock)
return ActOnBlockReturnStmt(ReturnLoc, RetValExp);

View File

@ -0,0 +1,10 @@
// RUN: clang-cc -fsyntax-only -verify %s
void f() {
struct X {
static int a; // expected-error {{static data member 'a' not allowed in local class 'X'}}
int b;
static void f() { }
};
}