llvm-project/clang/lib/Sema
Eli Friedman c267a32b05 Make the bitfield implicit truncation warning slightly more aggressive, and make the printed warning a bit more accurate. The new behavior matches gcc's -Wconversion. <rdar://problem/10238797>.
llvm-svn: 149089
2012-01-26 23:11:39 +00:00
..
AnalysisBasedWarnings.cpp Revert various template unreachability code I committed accidentally. 2012-01-24 04:51:48 +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 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 the bitfield implicit truncation warning slightly more aggressive, and make the printed warning a bit more accurate. The new behavior matches gcc's -Wconversion. <rdar://problem/10238797>. 2012-01-26 23:11:39 +00:00
SemaCodeComplete.cpp [libclang] In clang::getCursorKindForDecl() don't return "UnexposedDecl" 2012-01-24 21:39:26 +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 Replace a hack to handle NSLog/NSLogv in sema by declaring them as Library Builtins. 2012-01-24 22:32:46 +00:00
SemaDeclAttr.cpp Don't suppress access-control or invalid-type diagnostics from a 2012-01-26 20:04:03 +00:00
SemaDeclCXX.cpp Promote the extension warning for attempts to catch a reference or 2012-01-24 19:01:26 +00:00
SemaDeclObjC.cpp Whenever Sema attempts to look in the global method pool, try to load 2012-01-25 00:59:09 +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 Refactor to share code for handling return statements between lambda expressions and block literals. As it turns out, almost all the logic can be shared. 2012-01-26 03:00:14 +00:00
SemaExprCXX.cpp Improve efficiency of Sema::MaybeBindToTemporary by working with the 2012-01-26 03:33:51 +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 Downgrade C++11 narrowing conversion errors to warnings default-mapped 2012-01-23 15:29:33 +00:00
SemaLookup.cpp In CorrectTypo, use the cached correction as a starting point instead. 2012-01-23 20:18:59 +00:00
SemaObjCProperty.cpp minor refactoring to improve compile-time performance. 2012-01-11 19:48:08 +00:00
SemaOverload.cpp Slight refactoring; catch yet another case where we were missing an lvalue-to-rvalue conversion. 2012-01-26 00:26:18 +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 Refactor to share code for handling return statements between lambda expressions and block literals. As it turns out, almost all the logic can be shared. 2012-01-26 03:00:14 +00:00
SemaTemplate.cpp constexpr: converted constant expression handling for enumerator values, case 2012-01-18 23:55:52 +00:00
SemaTemplateDeduction.cpp Minor fixups for auto deduction of initializer lists. 2012-01-23 22:09: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 More dead code removal (using -Wunreachable-code) 2012-01-20 21:50:17 +00:00
SemaType.cpp Don't suppress access-control or invalid-type diagnostics from a 2012-01-26 20:04:03 +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 Refactor to share code for handling return statements between lambda expressions and block literals. As it turns out, almost all the logic can be shared. 2012-01-26 03:00:14 +00:00
TypeLocBuilder.h Remove more unnecessary #include <llvm/ADT/SmallVector.h> 2011-06-20 06:11:46 +00:00