llvm-project/clang/lib/Sema
Eli Friedman 44803326d4 Lambdas: semantic analysis of explicit captures.
This patch (and some of my other commits related to lambdas) is heavily based off of John Freeman's work-in-progress patches.

llvm-svn: 147706
2012-01-07 01:08:17 +00:00
..
AnalysisBasedWarnings.cpp Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch 2011-12-20 02:48:34 +00:00
AttributeList.cpp After further discussion, rename attribute 'objc_disable_automatic_synthesis' to 'objc_requires_property_definitions'. 2012-01-05 22:47:47 +00:00
CMakeLists.txt Update the CMake build for r146959's new files. 2011-12-20 08:42:15 +00:00
CodeCompleteConsumer.cpp Eliminate ObjCForwardProtocolDecl, which is redundant now that 2012-01-01 21:23:57 +00:00
DeclSpec.cpp Improve the warning for cv-qualifiers on free functions, from Ahmed Charles! 2011-10-19 06:04:55 +00:00
DelayedDiagnostic.cpp remove unneeded llvm:: namespace qualifiers on some core types now that LLVM.h imports 2011-07-23 10:55:15 +00:00
IdentifierResolver.cpp Keep track of all declarations of an Objective-C class (both forward 2011-12-15 20:29:51 +00:00
JumpDiagnostics.cpp Add -Wc++98-compat diagnostics for jumps which bypass initialization of non-POD 2011-10-20 21:42:12 +00:00
Makefile BUILD_ARCHIVE is the default for libraries, no need to set it. 2010-07-18 00:14:47 +00:00
MultiInitializer.cpp Improve unexpanded parameter pack diagnostics by using UPPC_Initializer here. 2011-10-23 18:59:33 +00:00
Scope.cpp Store a parameter index and function prototype depth in every 2011-05-01 22:35:37 +00:00
Sema.cpp More lambda work. Fixes a minor bug Richard pointed out, makes lookup for lambda parameters work correctly, recording more information into the AST. 2012-01-06 03:05:34 +00:00
SemaAccess.cpp Change the diagnostics which said 'accepted as an extension' to instead say 2011-12-29 21:57:33 +00:00
SemaAttr.cpp Add explicit attributes to mark functions as having had their 2011-09-30 05:12:12 +00:00
SemaCXXScopeSpec.cpp Support decltype in nested-name-specifiers. 2011-12-04 05:04:18 +00:00
SemaCast.cpp Revert r145244. It causes us to create broken ASTs with missing type information 2011-11-29 22:48:16 +00:00
SemaChecking.cpp Suppress -Wunused-value within macros from system headers. 2012-01-06 22:43:58 +00:00
SemaCodeComplete.cpp Eliminate ObjCForwardProtocolDecl, which is redundant now that 2012-01-01 21:23:57 +00:00
SemaConsumer.cpp Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_anch 2011-12-20 02:48:34 +00:00
SemaDecl.cpp Improvements to the uninitialized variable warning: Check if the constructor 2012-01-06 04:54:01 +00:00
SemaDeclAttr.cpp Minor refactoring of sentinel warning on blocks. Add a test for this warning. 2012-01-06 01:23:10 +00:00
SemaDeclCXX.cpp Tweak the fix to PR8977: an empty expression-list represents value initialization, not default initialization. Fixes PR11712. 2012-01-05 22:34:08 +00:00
SemaDeclObjC.cpp After further discussion, rename attribute 'objc_disable_automatic_synthesis' to 'objc_requires_property_definitions'. 2012-01-05 22:47:47 +00:00
SemaExceptionSpec.cpp Only print _Bool as 'bool' when 'bool' is defined as an object-like 2011-09-27 23:30:47 +00:00
SemaExpr.cpp Minor refactoring of sentinel warning on blocks. Add a test for this warning. 2012-01-06 01:23:10 +00:00
SemaExprCXX.cpp Lambdas: semantic analysis of explicit captures. 2012-01-07 01:08:17 +00:00
SemaExprMember.cpp Diagnose cases where the definition of a particular type is required, 2012-01-02 17:18:37 +00:00
SemaExprObjC.cpp Move the definition-specific data of ObjCInterfaceDecl into a 2011-12-15 05:27:12 +00:00
SemaFixItUtils.cpp Refactor the */& mismatch fixit generation out of SemaOverload and provide a simple conversion checking function. 2011-07-28 19:46:48 +00:00
SemaInit.cpp The value of a const weak variable is not an integer constant. 2012-01-05 00:13:19 +00:00
SemaLookup.cpp During name lookup, use redecl_iterator to walk over the redeclaration 2012-01-06 22:05:37 +00:00
SemaObjCProperty.cpp After further discussion, rename attribute 'objc_disable_automatic_synthesis' to 'objc_requires_property_definitions'. 2012-01-05 22:47:47 +00:00
SemaOverload.cpp Overloading for initializer list construction. 2011-12-22 18:58:38 +00:00
SemaPseudoObject.cpp Fix the instantiation of pseudo-object expressions. This is a 2011-11-30 04:42:31 +00:00
SemaStmt.cpp Suppress -Wunused-value within macros from system headers. 2012-01-06 22:43:58 +00:00
SemaTemplate.cpp Process attributes in explicit function template instantiations. Fixes part of 2012-01-04 05:40:59 +00:00
SemaTemplateDeduction.cpp Add feature to diagnostics that will provide more information on function 2011-11-23 22:32:32 +00:00
SemaTemplateInstantiate.cpp Fix a crash on invalid, http://llvm.org/pr11599 2011-12-20 20:32:49 +00:00
SemaTemplateInstantiateDecl.cpp Tweak the fix to PR8977: an empty expression-list represents value initialization, not default initialization. Fixes PR11712. 2012-01-05 22:34:08 +00:00
SemaTemplateVariadic.cpp Check for unexpanded parameter packs in the name that guards a 2011-10-25 03:44:56 +00:00
SemaType.cpp More lambda work. Fixes a minor bug Richard pointed out, makes lookup for lambda parameters work correctly, recording more information into the AST. 2012-01-06 03:05:34 +00:00
TargetAttributesSema.cpp Fix compiler warning about && in ||. 2011-09-30 20:32:22 +00:00
TargetAttributesSema.h Remove Sema.h's dependency on DeclCXX.h. 2010-08-25 07:42:41 +00:00
TreeTransform.h Unlike in C++03, a constant-expression is not an unevaluated operand in C++11. 2011-12-20 02:08:33 +00:00
TypeLocBuilder.h Remove more unnecessary #include <llvm/ADT/SmallVector.h> 2011-06-20 06:11:46 +00:00