llvm-project/clang/lib/Sema
Nico Weber 4bc649943f Add a source range to the ms path. Spotted by David Blaikie.
llvm-svn: 148683
2012-01-23 06:08:16 +00:00
..
AnalysisBasedWarnings.cpp Make clang's AST model sizeof and typeof with potentially-evaluated operands correctly, similar to what we already do with typeid. 2012-01-21 01:01:51 +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 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 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 unused variables. 2012-01-20 14:42:32 +00:00
SemaAttr.cpp Remove redundant argument. 2012-01-21 05:43:40 +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 Make sure the AST correctly represents lvalue-to-rvalue conversions where appropriate. 2012-01-23 02:35:22 +00:00
SemaCodeComplete.cpp Fix the code completion string for variadic macros with more than one 2012-01-21 00:43:38 +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 In Microsoft Mode, disable the C++11 strict integral conversion rules for enumerator that were introduced with r148439. Otherwise MSVC headers won't compile in C++ 11 mode. 2012-01-21 23:26:50 +00:00
SemaDeclAttr.cpp Instantiate dependent attributes when instantiating templates. 2012-01-20 22:37:06 +00:00
SemaDeclCXX.cpp Eli says this should check MicrosoftMode instead. 2012-01-23 04:01:33 +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 some comments relating to ExpressionEvaluationContexts. Get rid of a couple of uses of ConstantEvaluated which don't make sense. 2012-01-21 04:44:06 +00:00
SemaExprCXX.cpp Add a source range to the ms path. Spotted by David Blaikie. 2012-01-23 06:08:16 +00:00
SemaExprMember.cpp Remove PotentiallyPotentiallyEvaluated, and replace it with a much simpler and less error-prone way of handling the relevant cases. Towards marking of whether a declaration is used more accurately. 2012-01-20 01:26:23 +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 constexpr: converted constant expression handling for enumerator values, case 2012-01-18 23:55:52 +00:00
SemaLookup.cpp More dead code removal (using -Wunreachable-code) 2012-01-20 21:50:17 +00:00
SemaObjCProperty.cpp minor refactoring to improve compile-time performance. 2012-01-11 19:48:08 +00:00
SemaOverload.cpp constexpr: converted constant expression handling for enumerator values, case 2012-01-18 23:55:52 +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 Implement -Wswitch-enum correctly. 2012-01-23 04:46:12 +00:00
SemaTemplate.cpp constexpr: converted constant expression handling for enumerator values, case 2012-01-18 23:55:52 +00:00
SemaTemplateDeduction.cpp More dead code removal (using -Wunreachable-code) 2012-01-20 21:50:17 +00:00
SemaTemplateInstantiate.cpp Delayed template instantiation of late-parsed attributes. 2012-01-20 22:50:54 +00:00
SemaTemplateInstantiateDecl.cpp Delayed template instantiation of late-parsed attributes. 2012-01-20 22:50:54 +00:00
SemaTemplateVariadic.cpp More dead code removal (using -Wunreachable-code) 2012-01-20 21:50:17 +00:00
SemaType.cpp Fix some comments relating to ExpressionEvaluationContexts. Get rid of a couple of uses of ConstantEvaluated which don't make sense. 2012-01-21 04:44:06 +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 Remove PotentiallyPotentiallyEvaluated, and replace it with a much simpler and less error-prone way of handling the relevant cases. Towards marking of whether a declaration is used more accurately. 2012-01-20 01:26:23 +00:00
TypeLocBuilder.h Remove more unnecessary #include <llvm/ADT/SmallVector.h> 2011-06-20 06:11:46 +00:00