clang-1/lib/Sema
Douglas Gregor 4ac01401b1 Eliminate a 'default' case in template argument deduction, where we
were just punting on template argument deduction for a number of type
nodes. Most of them, obviously, didn't matter.

As a consequence of this, make extended vector types (via the
ext_vector_type attribute) actually work properly for several
important cases:
  - If the attribute appears in a type-id (i.e, not attached to a
  typedef), actually build a proper vector type
  - Build ExtVectorType whenever the size is constant; previously, we
  were building DependentSizedExtVectorType when the size was constant
  but the type was dependent, which makes no sense at all.
  - Teach template argument deduction to handle
  ExtVectorType/DependentSizedExtVectorType.



git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@133060 91177308-0d34-0410-b5e6-96231b3b80d8
2011-06-15 16:02:29 +00:00
..
AnalysisBasedWarnings.cpp Teach CFG building how to deal with CXXMemberCallExprs and BoundMemberTy, 2011-05-11 07:19:11 +00:00
AttributeList.cpp Add ms_struct attribute on record typee 2011-04-26 17:54:40 +00:00
CMakeLists.txt Store a parameter index and function prototype depth in every 2011-05-01 22:35:37 +00:00
CodeCompleteConsumer.cpp Implement a new 'availability' attribute, that allows one to specify 2011-03-23 00:50:03 +00:00
DeclSpec.cpp Implement a new type node, UnaryTransformType, designed to represent a 2011-05-24 22:41:36 +00:00
DelayedDiagnostic.cpp Teach DelayedDiagnostic to copy its string, rather than hope that the 2011-03-23 15:13:44 +00:00
IdentifierResolver.cpp Fix the insertion of label declarations into the identifier chain in 2011-03-24 10:35:39 +00:00
JumpDiagnostics.cpp Properly implement C++0x [stmt.dcl]p3, which requires a scope to be 2011-06-15 03:23:34 +00:00
Makefile BUILD_ARCHIVE is the default for libraries, no need to set it. 2010-07-18 00:14:47 +00:00
Scope.cpp Store a parameter index and function prototype depth in every 2011-05-01 22:35:37 +00:00
Sema.cpp Whenever we instantiate a static data member, make sure to define any new 2011-05-31 07:58:42 +00:00
SemaAccess.cpp Implement caching of default constructors on the resolution table. This 2011-06-10 03:50:41 +00:00
SemaAttr.cpp Add ms_struct attribute on record typee 2011-04-26 17:54:40 +00:00
SemaCXXCast.cpp Remove all references to InitializationSequence::FailedSequence from outside SemaInit.cpp. Replace them with the boolean conversion or the new Failed() function. This is a first step towards removing InitializationSequence::SequenceKind. No functionality change. 2011-06-05 12:23:28 +00:00
SemaCXXScopeSpec.cpp When checking a set of template parameter lists against a 2011-05-15 17:27:27 +00:00
SemaChecking.cpp Warn on memset(ptr, 0, sizeof(ptr)). Diagnostic wording by Jordy Rose. 2011-06-14 16:14:58 +00:00
SemaCodeComplete.cpp Add code completetion code for the new 'atomic' attribute 2011-06-11 17:14:27 +00:00
SemaDecl.cpp Don't add redundant FormatAttr, ConstAttr, or NoThrowAttr attributes, 2011-06-15 05:45:11 +00:00
SemaDeclAttr.cpp Eliminate a 'default' case in template argument deduction, where we 2011-06-15 16:02:29 +00:00
SemaDeclCXX.cpp Implement support for C++11 in-class initialization of non-static data members. 2011-06-11 17:19:42 +00:00
SemaDeclObjC.cpp Introduce a -cc1-level option to turn off related result type 2011-06-14 23:20:43 +00:00
SemaExceptionSpec.cpp Implement support for C++11 in-class initialization of non-static data members. 2011-06-11 17:19:42 +00:00
SemaExpr.cpp Warn on "void f(int a[10]) { sizeof(a); }" 2011-06-15 02:47:03 +00:00
SemaExprCXX.cpp Implement support for C++11 in-class initialization of non-static data members. 2011-06-11 17:19:42 +00:00
SemaExprObjC.cpp Implement Objective-C Related Result Type semantics. 2011-06-11 01:09:30 +00:00
SemaInit.cpp Implement Objective-C Related Result Type semantics. 2011-06-11 01:09:30 +00:00
SemaLookup.cpp This change is breaking selfhost. Revert it until I have more time 2011-06-10 12:07:09 +00:00
SemaObjCProperty.cpp Restore 'atomic' as an attribute of objc 2011-06-11 00:45:12 +00:00
SemaOverload.cpp Fix a regression in the two-phase lookup diagnostics that switching the 2011-06-08 10:13:17 +00:00
SemaStmt.cpp Implement Objective-C Related Result Type semantics. 2011-06-11 01:09:30 +00:00
SemaTemplate.cpp When performing substitution of default template template parameters 2011-06-15 14:20:42 +00:00
SemaTemplateDeduction.cpp Eliminate a 'default' case in template argument deduction, where we 2011-06-15 16:02:29 +00:00
SemaTemplateInstantiate.cpp When performing substitution of default template template parameters 2011-06-15 14:20:42 +00:00
SemaTemplateInstantiateDecl.cpp Implement support for C++11 in-class initialization of non-static data members. 2011-06-11 17:19:42 +00:00
SemaTemplateVariadic.cpp Implement a new type node, UnaryTransformType, designed to represent a 2011-05-24 22:41:36 +00:00
SemaType.cpp Eliminate a 'default' case in template argument deduction, where we 2011-06-15 16:02:29 +00:00
TargetAttributesSema.cpp Support for C++11 (non-template) alias declarations. 2011-04-15 14:24:37 +00:00
TargetAttributesSema.h Remove Sema.h's dependency on DeclCXX.h. 2010-08-25 07:42:41 +00:00
TreeTransform.h Implement support for C++11 in-class initialization of non-static data members. 2011-06-11 17:19:42 +00:00
TypeLocBuilder.h Remove crash recovery cleanups from TypeLocBuilder. They were a bit error prone, only hit in rare cases. 2011-03-22 01:15:21 +00:00