]> granicus.if.org Git - clang/commit
Implement support for C++11 in-class initialization of non-static data members.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Sat, 11 Jun 2011 17:19:42 +0000 (17:19 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Sat, 11 Jun 2011 17:19:42 +0000 (17:19 +0000)
commit7a614d8380297fcd2bc23986241905d97222948c
treebcbfe125e7a2dccada57451970279902a4cfe486
parent27f45236005d9dd2bbbfeb1682eb349cb8b6998b
Implement support for C++11 in-class initialization of non-static data members.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132878 91177308-0d34-0410-b5e6-96231b3b80d8
57 files changed:
include/clang/AST/Decl.h
include/clang/AST/DeclCXX.h
include/clang/AST/DeclObjC.h
include/clang/AST/Type.h
include/clang/Basic/DiagnosticParseKinds.td
include/clang/Basic/DiagnosticSemaKinds.td
include/clang/Basic/ExceptionSpecificationType.h
include/clang/Parse/Parser.h
include/clang/Sema/DeclSpec.h
include/clang/Sema/Scope.h
include/clang/Sema/Sema.h
lib/AST/ASTContext.cpp
lib/AST/ASTImporter.cpp
lib/AST/Decl.cpp
lib/AST/DeclCXX.cpp
lib/AST/DeclPrinter.cpp
lib/AST/Expr.cpp
lib/AST/Mangle.cpp
lib/CodeGen/CGBlocks.cpp
lib/CodeGen/CGClass.cpp
lib/CodeGen/CGObjCMac.cpp
lib/Parse/ParseCXXInlineMethods.cpp
lib/Parse/ParseDeclCXX.cpp
lib/Parse/Parser.cpp
lib/Rewrite/RewriteObjC.cpp
lib/Sema/SemaDecl.cpp
lib/Sema/SemaDeclCXX.cpp
lib/Sema/SemaExceptionSpec.cpp
lib/Sema/SemaExpr.cpp
lib/Sema/SemaExprCXX.cpp
lib/Sema/SemaTemplateInstantiate.cpp
lib/Sema/SemaTemplateInstantiateDecl.cpp
lib/Sema/SemaType.cpp
lib/Sema/TreeTransform.h
lib/Serialization/ASTReaderDecl.cpp
lib/Serialization/ASTWriterDecl.cpp
test/CXX/class/class.mem/p5-0x.cpp [new file with mode: 0644]
test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/p4.cpp
test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/p5.cpp
test/CXX/dcl.dcl/dcl.spec/dcl.type/p3-0x.cpp
test/CXX/dcl.decl/dcl.init/dcl.init.aggr/p1-0x.cpp [new file with mode: 0644]
test/CXX/dcl.decl/dcl.init/p14-0x.cpp [new file with mode: 0644]
test/CXX/except/except.spec/p14.cpp
test/CXX/expr/expr.prim/p12-0x.cpp [new file with mode: 0644]
test/CXX/expr/expr.prim/p4-0x.cpp [new file with mode: 0644]
test/CXX/special/class.ctor/p5-0x.cpp [new file with mode: 0644]
test/CXX/special/class.init/class.base.init/p8-0x.cpp [new file with mode: 0644]
test/CXX/special/class.init/class.base.init/p9-0x.cpp [new file with mode: 0644]
test/CodeGenCXX/member-init-ctor.cpp [new file with mode: 0644]
test/CodeGenObjCXX/blocks.mm
test/PCH/cxx-member-init.cpp [new file with mode: 0644]
test/Parser/cxx0x-member-initializers.cpp [new file with mode: 0644]
test/SemaCXX/PR9572.cpp
test/SemaCXX/class.cpp
test/SemaCXX/implicit-exception-spec.cpp [new file with mode: 0644]
test/SemaCXX/member-init.cpp [new file with mode: 0644]
test/SemaCXX/type-traits.cpp