]> granicus.if.org Git - clang/commitdiff
Support for [class.local]p4.
authorAnders Carlsson <andersca@mac.com>
Wed, 24 Jun 2009 00:28:53 +0000 (00:28 +0000)
committerAnders Carlsson <andersca@mac.com>
Wed, 24 Jun 2009 00:28:53 +0000 (00:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@74030 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Basic/DiagnosticSemaKinds.td
lib/Sema/SemaDecl.cpp
lib/Sema/SemaStmt.cpp
test/CXX/class/class.local/p4.cpp [new file with mode: 0644]

index 5b96f81677f489548f54fb3f3788af38cc6ddc90..d9b268eb941750346eb7f11c4e536ea60a07cd8d 100644 (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">;
index 48d1d64de14b13f6abfb11e90d48a937ad6f973e..7c4cb60fd585bd974f3a8a1611612fb62fa243a8 100644 (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(), 
index 5a91496db1a0c2ab28446eba4b701a718e4bc84e..914839cbf790b93047e5ebecc0edeafb60861954 100644 (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);
diff --git a/test/CXX/class/class.local/p4.cpp b/test/CXX/class/class.local/p4.cpp
new file mode 100644 (file)
index 0000000..40702ad
--- /dev/null
@@ -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() { }
+  };
+}
\ No newline at end of file