llvm-project/clang/lib/Sema
Eli Friedman fbc0dff6f8 Fix a couple issues where we didn't correctly delay diagnostics in PotentiallyPotentiallyEvaluated contexts. In preparation for making sizeof() PotentiallyPotentiallyEvaluated.
llvm-svn: 148367
2012-01-18 01:05:54 +00:00
..
AnalysisBasedWarnings.cpp Improve 0-argument -Wvexing-parse diagnostic by adding notes with fix-its: 2012-01-12 23:53:29 +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 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 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 Add Sema::isStdInitializerList, which will be necessary for the upcoming operations. 2012-01-17 22:49:33 +00:00
SemaAccess.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
SemaAttr.cpp Remove unnecessary default cases in switches over enums. 2012-01-17 02:30:50 +00:00
SemaCXXScopeSpec.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
SemaCast.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
SemaChecking.cpp objc-arc: when 'assign' attribute is unspecified, 2012-01-17 22:58:16 +00:00
SemaCodeComplete.cpp Remove dead comments as per Chandler's feedback to r148292 2012-01-17 07:28:46 +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 Auto deduction support for std::initializer_list, including for-range support. This means you can now write: 2012-01-17 22:50:08 +00:00
SemaDeclAttr.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
SemaDeclCXX.cpp Add Sema::isInitListConstructor. This will be needed for upcoming work. 2012-01-17 22:50:14 +00:00
SemaDeclObjC.cpp objc: disallow __block attribute on method params. 2012-01-14 18:44:35 +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 Fix a couple issues where we didn't correctly delay diagnostics in PotentiallyPotentiallyEvaluated contexts. In preparation for making sizeof() PotentiallyPotentiallyEvaluated. 2012-01-18 01:05:54 +00:00
SemaExprCXX.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
SemaExprMember.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
SemaExprObjC.cpp Fix a couples of issues in format strings checking. 2012-01-17 20:03:31 +00:00
SemaFixItUtils.cpp Refactor for clarity. 2012-01-13 19:34:55 +00:00
SemaInit.cpp Sema support for initialization of std::initializer_list from initializer lists. 2012-01-17 22:49:42 +00:00
SemaLookup.cpp De-virtualize getPreviousDecl() and getMostRecentDecl() when we know 2012-01-14 16:38:05 +00:00
SemaObjCProperty.cpp minor refactoring to improve compile-time performance. 2012-01-11 19:48:08 +00:00
SemaOverload.cpp Basic overloading support for std::initializer_list. 2012-01-17 22:49:48 +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 Auto deduction support for std::initializer_list, including for-range support. This means you can now write: 2012-01-17 22:50:08 +00:00
SemaTemplate.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
SemaTemplateDeduction.cpp Auto deduction support for std::initializer_list, including for-range support. This means you can now write: 2012-01-17 22:50:08 +00:00
SemaTemplateInstantiate.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
SemaTemplateInstantiateDecl.cpp De-virtualize getPreviousDecl() and getMostRecentDecl() when we know 2012-01-14 16:38:05 +00:00
SemaTemplateVariadic.cpp Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo. 2012-01-13 23:10:36 +00:00
SemaType.cpp Fix a couple issues where we didn't correctly delay diagnostics in PotentiallyPotentiallyEvaluated contexts. In preparation for making sizeof() PotentiallyPotentiallyEvaluated. 2012-01-18 01:05:54 +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 Start refactoring code for capturing variables and 'this' so that it is shared between lambda expressions and block literals. 2012-01-11 02:36:31 +00:00
TypeLocBuilder.h Remove more unnecessary #include <llvm/ADT/SmallVector.h> 2011-06-20 06:11:46 +00:00