llvm-project/clang/lib/Sema
Richard Smith 3f333f2edf Disallow constexpr main.
llvm-svn: 149770
2012-02-04 06:10:17 +00:00
..
AnalysisBasedWarnings.cpp Thread safety analysis: 2012-02-03 04:45:26 +00:00
AttributeList.cpp The following patch adds __attribute__((no_address_safety_analysis)) which will allow to disable 2012-01-24 19:25:38 +00:00
CMakeLists.txt Instantiate dependent attributes when instantiating templates. 2012-01-20 22:37:06 +00:00
CodeCompleteConsumer.cpp Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) 2012-01-17 06:56:22 +00:00
DeclSpec.cpp Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) 2012-01-17 06:56:22 +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 Only mark an IdentifierInfo as having changed since deserialization 2012-01-24 15:24:38 +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 Rework the external Sema source's ReadMethodPool() so that it doesn't 2012-01-25 00:49:42 +00:00
SemaAccess.cpp Remove unused variables. 2012-01-20 14:42:32 +00:00
SemaAttr.cpp Reject mismatched "#pragma GCC visibility push" and "#pragma GCC visibility pop". 2012-02-01 23:24:59 +00:00
SemaCXXScopeSpec.cpp Make the callback object to Sema::CorrectTypo mandatory. 2012-01-31 23:49:25 +00:00
SemaCast.cpp C++ 5.2.10p2 has a note that mentions that, subject to all other restrictions, 2012-02-03 02:54:37 +00:00
SemaChecking.cpp Do not show macro expansion in strncat warnings, which can be defined as 2012-02-03 01:27:37 +00:00
SemaCodeComplete.cpp When providing code completions for a switch over a scoped enumeration 2012-02-01 05:02:47 +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 Disallow constexpr main. 2012-02-04 06:10:17 +00:00
SemaDeclAttr.cpp Split Sema::MarkDeclarationReferenced into multiple functions; the additional entry points are needed to implement C++11 odr-use marking correctly. No functional change in this patch; I'll actually make the change which fixes the odr-use marking in a followup patch. 2012-02-02 03:46:19 +00:00
SemaDeclCXX.cpp constexpr: 2012-02-04 00:33:54 +00:00
SemaDeclObjC.cpp Make the callback object to Sema::CorrectTypo mandatory. 2012-01-31 23:49:25 +00:00
SemaExceptionSpec.cpp Remove unreachable code in Clang. (replace with llvm_unreachable where appropriate or when GCC requires it) 2012-01-17 06:56:22 +00:00
SemaExpr.cpp Suppress the used-but-not-defined warning for static data members while I look into a rather nasty bug in the new odr-use marking code. 2012-02-04 00:54:05 +00:00
SemaExprCXX.cpp Fix a rejects-valid in C++11: array new of a negative size, or overflowing array 2012-02-04 05:35:53 +00:00
SemaExprMember.cpp Split Sema::MarkDeclarationReferenced into multiple functions; the additional entry points are needed to implement C++11 odr-use marking correctly. No functional change in this patch; I'll actually make the change which fixes the odr-use marking in a followup patch. 2012-02-02 03:46:19 +00:00
SemaExprObjC.cpp Implement implicit capture for lambda expressions. 2012-02-03 22:47:37 +00:00
SemaFixItUtils.cpp Refactor for clarity. 2012-01-13 19:34:55 +00:00
SemaInit.cpp Split Sema::MarkDeclarationReferenced into multiple functions; the additional entry points are needed to implement C++11 odr-use marking correctly. No functional change in this patch; I'll actually make the change which fixes the odr-use marking in a followup patch. 2012-02-02 03:46:19 +00:00
SemaLookup.cpp Introduce the lambda scope before determining explicit captures, which 2012-02-01 17:04:21 +00:00
SemaObjCProperty.cpp Further enhance comment for property in continuation class. 2012-02-02 22:37:48 +00:00
SemaOverload.cpp Initialize the user defined conversion function to null if this is an aggregate initialization from an initializer list. 2012-02-02 19:35:29 +00:00
SemaPseudoObject.cpp Add IsImplicit field in ObjCMessageExpr that is true when the message 2012-01-12 02:34:39 +00:00
SemaStmt.cpp Make sure we call MaybeCreateExprWithCleanups for the sub-expression of an indirect goto. 2012-01-31 22:47:07 +00:00
SemaTemplate.cpp When a pack expansion occurs in the template argument list of an alias 2012-02-03 17:16:23 +00:00
SemaTemplateDeduction.cpp SmallBitVectorize the deduced parameter set. 2012-01-30 16:17:39 +00:00
SemaTemplateInstantiate.cpp When we're substituting into a function parameter pack and expect to 2012-01-25 16:15:54 +00:00
SemaTemplateInstantiateDecl.cpp When we're substituting into a function parameter pack and expect to 2012-01-25 16:15:54 +00:00
SemaTemplateVariadic.cpp Make the callback object to Sema::CorrectTypo mandatory. 2012-01-31 23:49:25 +00:00
SemaType.cpp constexpr: Unlike other incomplete types, 'void' cannot possibly be completed as 2012-02-01 04:40:02 +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 Split Sema::MarkDeclarationReferenced into multiple functions; the additional entry points are needed to implement C++11 odr-use marking correctly. No functional change in this patch; I'll actually make the change which fixes the odr-use marking in a followup patch. 2012-02-02 03:46:19 +00:00
TypeLocBuilder.h Remove more unnecessary #include <llvm/ADT/SmallVector.h> 2011-06-20 06:11:46 +00:00