hanchenye-llvm-project/clang/lib/Sema
Aaron Ballman 888e935978 Removing the alloc_size attribute. The attribute was semantically handled, but silently ignored. Most of this feature was already reverted in June 2012 (r159016), this just cleans up the pieces left over.
llvm-svn: 197866
2013-12-21 17:15:13 +00:00
..
AnalysisBasedWarnings.cpp Add -Winfinite-recursion to Clang 2013-12-21 02:33:43 +00:00
AttributeList.cpp No longer accepting attribute spellings with prefix and suffix underscores except for GNU attributes, or C++11-style attributes in the GNU namespace. This prevents attributes such as __declspec(__dllexport__) or [[__noreturn__]] from being treated as known attributes. 2013-12-11 22:27:44 +00:00
CMakeLists.txt [CMake] clangSema doesn't depend on LLVM CodeGen any more. 2013-12-09 19:27:36 +00:00
CodeCompleteConsumer.cpp
DeclSpec.cpp Remove OpenCL-specific type keywords and specifiers 2013-12-18 15:29:05 +00:00
DelayedDiagnostic.cpp Implemented delayed processing of 'unavailable' checking, just like with 'deprecated'. 2013-12-18 23:30:06 +00:00
IdentifierResolver.cpp Per [dcl.meaning]p1, a name in an inline namespace can be redeclared using a 2013-12-05 04:30:04 +00:00
JumpDiagnostics.cpp PR18217: Rewrite JumpDiagnostics' handling of temporaries, to correctly handle 2013-12-12 01:27:02 +00:00
Makefile
MultiplexExternalSemaSource.cpp
Scope.cpp Revert r193073 and the attempt to fix it in r193170. 2013-10-22 18:07:04 +00:00
ScopeInfo.cpp [REFACTOR] Refactored some of the generic-lambda capturing code. 2013-12-07 20:22:44 +00:00
Sema.cpp Remove OpenCL-specific type keywords and specifiers 2013-12-18 15:29:05 +00:00
SemaAccess.cpp When performing a delayed access check, use the surrounding lexical context for 2013-12-11 03:35:27 +00:00
SemaAttr.cpp
SemaCXXScopeSpec.cpp Make Sema::BuildCXXNestedNameSpecifier correctly clear the previous 2013-12-16 19:19:18 +00:00
SemaCast.cpp ObjectiveC. Allow toll free bridge cast warnings outside 2013-11-21 00:39:36 +00:00
SemaChecking.cpp [AArch64 NEON] Support poly128_t and implement relevant intrinsic. 2013-12-10 06:49:01 +00:00
SemaCodeComplete.cpp Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a holdover from the long-dead Action interface. 2013-10-08 17:08:03 +00:00
SemaConsumer.cpp
SemaDecl.cpp Don't mark record decls invalid when one of its methods is invalid, PR18284. 2013-12-21 00:49:51 +00:00
SemaDeclAttr.cpp Removing the alloc_size attribute. The attribute was semantically handled, but silently ignored. Most of this feature was already reverted in June 2012 (r159016), this just cleans up the pieces left over. 2013-12-21 17:15:13 +00:00
SemaDeclCXX.cpp [ms-cxxabi] Don't do destructor check on declarations if the dtor is deleted 2013-12-17 17:49:22 +00:00
SemaDeclObjC.cpp ObjectiveC. typo fix in my last patch, 2013-12-18 00:52:54 +00:00
SemaExceptionSpec.cpp Eliminate BinaryTypeTraitExpr 2013-12-13 20:49:58 +00:00
SemaExpr.cpp Replacing calls to getAttr with calls to hasAttr for clarity. No functional change intended -- this only replaces Boolean uses of getAttr. 2013-12-19 02:39:40 +00:00
SemaExprCXX.cpp Remove an unused parameter and include after r197273 2013-12-13 21:19:30 +00:00
SemaExprMember.cpp This patch implements capturing of variables within generic lambdas. 2013-11-07 05:17:06 +00:00
SemaExprObjC.cpp Switched code from using hasAttr followed by getAttr to simply call getAttr directly. 2013-12-19 13:20:36 +00:00
SemaFixItUtils.cpp
SemaInit.cpp Allow Objective-C pointer conversions following an explicit user conversion. 2013-12-18 21:46:16 +00:00
SemaLambda.cpp Rename a variable that I missed in the previous refactoring. 2013-12-09 00:15:23 +00:00
SemaLookup.cpp Eliminate the last trivial NDEBUG uses in clang headers 2013-12-07 13:51:35 +00:00
SemaObjCProperty.cpp Replacing calls to getAttr with calls to hasAttr for clarity. No functional change intended -- this only replaces Boolean uses of getAttr. 2013-12-19 02:39:40 +00:00
SemaOpenMP.cpp Convert anachronistic use of 'void *' to 'DeclContext *' in Scope that was a holdover from the long-dead Action interface. 2013-10-08 17:08:03 +00:00
SemaOverload.cpp ObjectiveC. Further improvements of use 2013-12-16 22:54:37 +00:00
SemaPseudoObject.cpp Remove a whole lot of unused variables 2013-11-27 05:22:15 +00:00
SemaStmt.cpp Replacing calls to getAttr with calls to hasAttr for clarity. No functional change intended -- this only replaces Boolean uses of getAttr. 2013-12-19 02:39:40 +00:00
SemaStmtAsm.cpp
SemaStmtAttr.cpp
SemaTemplate.cpp PR18246: When performing template argument deduction to decide which template 2013-12-14 03:18:05 +00:00
SemaTemplateDeduction.cpp PR18229: Fix typo in assert condition. 2013-12-12 23:14:16 +00:00
SemaTemplateInstantiate.cpp Fix init-captures for generic lambdas. 2013-12-05 01:40:41 +00:00
SemaTemplateInstantiateDecl.cpp PR18232: implement instantiation for class-scope explicit specializations of 2013-12-14 01:04:22 +00:00
SemaTemplateVariadic.cpp Remove OpenCL-specific type keywords and specifiers 2013-12-18 15:29:05 +00:00
SemaType.cpp Refactor the Microsoft inheritance attribute handling so that it no longer has special treatment. Also fixes a minor bug where the attributes were being parsed as though they were GNU-style attributes when they were in fact keyword attributes. 2013-12-18 23:44:18 +00:00
TargetAttributesSema.cpp Allow target-specific attributes to share a spelling between different attributes via the ParseKind field. Attributes will be given a common parsed attribute identifier (the AttributeList::AT_* enum), but retain distinct Attr subclasses. 2013-12-15 13:05:48 +00:00
TargetAttributesSema.h
TreeTransform.h Eliminate BinaryTypeTraitExpr 2013-12-13 20:49:58 +00:00
TypeLocBuilder.cpp
TypeLocBuilder.h