- ba877ad Fixed InnerLocStart. by Abramo Bagnara · 14 years ago
- eecf5fa Add a bit to ParmVarDecl indicating whether the parameter undergoes by John McCall · 14 years ago
- 1598797 Fixed isEmbeddedInDeclarator flag loading. by Abramo Bagnara · 14 years ago
- 02b0d65 Warn on usage of unavailable objc 'class' in by Fariborz Jahanian · 14 years ago
- f525160 Teach libclang's token-annotation logic about context-sensitive by Douglas Gregor · 14 years ago
- a2026c9 Fixed source range for StaticAssertDecl and LinkageSpecDecl. Fixed source range for declarations using postfix types. by Abramo Bagnara · 14 years ago
- acba90f Fixed NamespaceDecl source range. by Abramo Bagnara · 14 years ago
- ff676cb Fixed source range for all DeclaratorDecl's. by Abramo Bagnara · 14 years ago
- 36784e7 Removed trailing whitespace as a test commit by John Wiegley · 14 years ago
- 834e3f6 Fix my earlier commit to work with escaped newlines and leave breadcrumbs by John McCall · 14 years ago
- 2792fa5 objc_gc wants a pointer type, not a function type; give it a more appropriate by John McCall · 14 years ago
- d45e4b7 Update the check for a NULL macro to use Preprocessor::getSpelling(). by John McCall · 14 years ago
- db93fde Detect attempts to provide a specialization of a function within a by Douglas Gregor · 14 years ago
- d97cec3 g++ is more permissive regarding flexible arrays. by Argyrios Kyrtzidis · 14 years ago
- cc20945 Support explicit template specialization and instantiation for members by Douglas Gregor · 14 years ago
- 944cdae When rebuilding a dependent template specialization type to another by Douglas Gregor · 14 years ago
- 0a0367a When transforming a dependent template specialization type, make sure by Douglas Gregor · 14 years ago
- 353ee24 Produce a diagnostic for unused overloaded expressions, from Faisal Vali! by Douglas Gregor · 14 years ago
- fd9c42e Used a nicer cast. by Abramo Bagnara · 14 years ago
- 2553eaf Improved type source location for long long type. by Abramo Bagnara · 14 years ago
- eff1dbe We may fail to map a declaration in a template to its instantiated by Douglas Gregor · 14 years ago
- 3c52a21 Fix copy-and-paste typo in the transformation of Microsoft __uuidof expressions, from Eric Niebler via John Wiegley by Douglas Gregor · 14 years ago
- a868c37 Completed source ranges fixes for all classes inheriting from TypeDecl. by Abramo Bagnara · 14 years ago
- 344577e Fixed TypedefDecl and TemplateTypeParameter source range. by Abramo Bagnara · 14 years ago
- 8b5b409 Reinstate r127112, "Propagate new-style exception spec information to ExtProtoInfo.", this time with the missing header. by Sebastian Redl · 14 years ago
- 5453d93 When performing template argument deduction for a non-reference by Douglas Gregor · 14 years ago
- 708a866 Revert r127112, "Propagate new-style exception spec information to ExtProtoInfo." by NAKAMURA Takumi · 14 years ago
- 06bfa84 Propagate new-style exception spec information to ExtProtoInfo. by Sebastian Redl · 14 years ago
- 6e5d319 Propagate new-style exception spec information to Declarator. by Sebastian Redl · 14 years ago
- 5875038 When substituting in for a template name, do not produce a qualified by Douglas Gregor · 14 years ago
- 6784304 Fixed LabelDecl source range and cleaned creation code. by Abramo Bagnara · 14 years ago
- c494f77 When determining template instantiation arguments within a function by Douglas Gregor · 14 years ago
- 0b4bcb6 When transforming a substituted template type parameter, try to by Douglas Gregor · 14 years ago
- b6ab6c1 Improved MemberPointerType source locations. by Abramo Bagnara · 14 years ago
- fbe5994 Much to my surprise, OverloadExprs can also point to function template decls. by Matt Beaumont-Gay · 14 years ago
- 26cd44d When diagnostics are suppressed (e.g., because of code completion), don't trigger the ExprTemplates.empty() check at the end of a function body by Douglas Gregor · 14 years ago
- cb710a4 Diagnose destructor templates. Fixes PR7904. by Douglas Gregor · 14 years ago
- 7ec1873 When clearing a LookupResult structure, clear out the naming class, by Douglas Gregor · 14 years ago
- 6cd9d4a Teach Sema::ActOnCXXNestedNameSpecifier and Sema::CheckTemplateIdType by Douglas Gregor · 14 years ago
- a93fc9f After an error of any kind has occurred, don't assert when attempting by Douglas Gregor · 14 years ago
- b710722 Patch up several Sema::FindInstantiatedDecl() callers, so that they'll by Douglas Gregor · 14 years ago
- 087eb5a When constructing source-location information for a by Douglas Gregor · 14 years ago
- 9a299e0 Make sure to put template parameters into their owning template's by Douglas Gregor · 14 years ago
- abfb405 Fixed source range for function template specializations. by Abramo Bagnara · 14 years ago
- c54061a Move private structs into anonymous namespaces. by Benjamin Kramer · 14 years ago
- 14aa217 Make AttributedTypes for GC-qualified types and fix some miscellaneous by John McCall · 14 years ago
- 0266aa3 -Woverloaded-virtual shouldn't warn for static functions. Fixes rdar://9083431 & http://llvm.org/PR9396. by Argyrios Kyrtzidis · 14 years ago
- b46ae39 Fix PR9390 in not one, but two ways: by Douglas Gregor · 14 years ago
- 203548b Fixed source range for LabelDecl. by Abramo Bagnara · 14 years ago
- 48b8959 Don't emit unused warning for deleted functions. Fixes rdar://8365684 & http://llvm.org/PR9391. by Argyrios Kyrtzidis · 14 years ago
- 55a9637 Removed left brace location from LinkageSpecDecl. by Abramo Bagnara · 14 years ago
- 5f6bcbe Fixed end source location for LinkageSpecDecl. by Abramo Bagnara · 14 years ago
- 21e006e Fixed source range for FileScopeAsmDecl. Others source range fixes will follow. by Abramo Bagnara · 14 years ago
- 6771423 When we use the default template arguments of a template template by Douglas Gregor · 14 years ago
- c5aff44 Teach CFGImplicitDtor::getDestructorDecl() about arrays of objects with destructors. by Ted Kremenek · 14 years ago
- 1e284a7 Remove cruft by Douglas Gregor · 14 years ago
- 0a9beb5 Force CaseStmt to store its child statements in source-code order, by Douglas Gregor · 14 years ago
- c9f8f5a Introduce CFGImplicitDtor::isNoReturn() to query whether a destructor actually returns. Use this for -Wreturn-type to prune false positives reported in PR 6884. by Ted Kremenek · 14 years ago
- 6ebe664 Eliminate an unnecessary TemporaryBase object from TreeTransform by Douglas Gregor · 14 years ago
- 044526f Kill off the by Douglas Gregor · 14 years ago
- d11050f Eliminate TreeTransform::RebuildNestedNameSpecifier(), all four of by Douglas Gregor · 14 years ago
- 21e2e60 Eliminate an unnecessary use of CXXScopeSpec::MakeTrivial. We have proper nested-name-specifier source-location information in DependentTemplateSpecializationTypeLocs now by Douglas Gregor · 14 years ago
- 9151c11 Kill off TreeTransform::TransformNestedNameSpecifier() in favor of the by Douglas Gregor · 14 years ago
- 1d752d7 Kill off the TreeTransform::TransformTemplateName overload that has by Douglas Gregor · 14 years ago
- b71d821 Kill off one of the TreeTransform::TransformTypeInObjectScope() by Douglas Gregor · 14 years ago
- fd4ffeb Start migrating TreeTransform's TransformTemplateName over to version by Douglas Gregor · 14 years ago
- b6744ef Push nested-name-specifier source location information into template by Douglas Gregor · 14 years ago
- 883cc2c Don't hard-code these constants, or at least don't hard-code them so hard. by John McCall · 14 years ago
- bdc49d3 Pretty up the wrong-number-of-arguments-for-attribute diagnostic by by John McCall · 14 years ago
- d5313b0 Provide an attribute, objc_method_family, to allow the inferred family by John McCall · 14 years ago
- eca5d22 Support a new InheritableAttr subclass, InheritableParamAttr, which is by John McCall · 14 years ago
- 018591f Semantic checking for exception specifications should be triggered by by John McCall · 14 years ago
- 406f98f When we're substituting into a parameter-type-list nested inside the pattern by Douglas Gregor · 14 years ago
- 059101f Push nested-name-specifier source-location information into dependent by Douglas Gregor · 14 years ago
- 94fdffa Push nested-name-specifier source-location information into dependent by Douglas Gregor · 14 years ago
- 425a31e Don't warning about shifting by too many bits in dead code. by Ted Kremenek · 14 years ago
- 3aea4da For C++, enhance -Warray-bounds to recursively analyze array subscript accesses in ?: expressions. by Ted Kremenek · 14 years ago
- 9e87687 Reinstate the introduction of source-location information for by Douglas Gregor · 14 years ago
- 082bf7a Don't wanr about "negative shifts" in code that is unreachable. Fixes PR 5544. by Ted Kremenek · 14 years ago
- 2786864 Revert r126748, my second attempt at nested-name-specifier source by Douglas Gregor · 14 years ago
- 90566c0 Implement comparison of C++0x scoped enumeration types. Fixes PR9333. by Douglas Gregor · 14 years ago
- fff9513 When digging into a cv-qualified return type that is a pointer type to by Douglas Gregor · 14 years ago
- ef24c4b When building a type for a typename specifier, check specifically for by Douglas Gregor · 14 years ago
- be38c5f Reinstate r126737, extending the generation of type-source location by Douglas Gregor · 14 years ago
- 44cd9f9 Revert r126737, the most recent nested-name-specifier location change, for buildbot breakage. by Douglas Gregor · 14 years ago
- e34e3f1 Move the bool-conversions behind the DiagRuntimeBehavior logic. It's by Chandler Carruth · 14 years ago
- 239cbb0 Push nested-name-specifier source location information into elaborated by Douglas Gregor · 14 years ago
- 2494dd0 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
- 5f791bb Refactor the construction of nested-name-specifiers with by Douglas Gregor · 14 years ago
- e29425b Teach Sema::CheckTypenameType to use nested-name-specifiers with by Douglas Gregor · 14 years ago
- 40d96a6 Push nested-name-specifier location information into DeclRefExpr and by Douglas Gregor · 14 years ago
- 4c9be89 Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
- 7c3179c Push nested-name-specifier source location information into by Douglas Gregor · 14 years ago
- a88f09f Eliminate the last remains of TemplateSpecializationTypes with by Douglas Gregor · 14 years ago
- 15348ae Add a -fcxx-exceptions flag to the frontend, which can be used to enable by Anders Carlsson · 14 years ago
- aa2187d When we encounter a dependent template name within a by Douglas Gregor · 14 years ago
- a02411e Eliminate a silly little Parse/Sema dance when parsing typename by Douglas Gregor · 14 years ago
- 4171766 Implement delegating constructors partially. by Sean Hunt · 14 years ago
- 8e10f3b Provide a bit saying that a builtin undergoes custom type-checking, then by John McCall · 14 years ago
- 5e24f2a Sprinkle optional text of the "unavailable' attribute by Fariborz Jahanian · 14 years ago