Age | Commit message (Expand) | Author |
2010-07-07 | Introduce Decl::hasBody() and FunctionDecl::hasBody() and use them instead of... | Argyrios Kyrtzidis |
2010-07-07 | implement PR7569, warning about assignment to null, which | Chris Lattner |
2010-07-06 | Fix multiple emission of the this-> fixit for each instantiation by fixing the | Nick Lewycky |
2010-07-05 | fix a bug I introduced in r107624 | Chris Lattner |
2010-07-05 | rearrange some logic, no functionality change. | Chris Lattner |
2010-06-30 | Fix vector literal/cast confusion - bug 6895. | John Thompson |
2010-06-30 | Fix rdar://8139785 "implement warning on dead expression in comma operator" | Argyrios Kyrtzidis |
2010-06-29 | When typo correction produces a result that is not of the kind we're | Douglas Gregor |
2010-06-22 | Vector types are not arithmetic types, either. Note that we now ban | Douglas Gregor |
2010-06-22 | Change Type::isFloatingType() to reflect the actual definition of a | Douglas Gregor |
2010-06-21 | Zero out a stale pointer | Douglas Gregor |
2010-06-17 | Given Decl::isUsed() a flag indicating when to consider the "used" | Douglas Gregor |
2010-06-17 | Do not treat @selector as lvalue (unlike g++). | Fariborz Jahanian |
2010-06-16 | Fix a point of semantics with using declaration hiding: method templates | John McCall |
2010-06-16 | Give Type::isIntegralType() an ASTContext parameter, so that it | Douglas Gregor |
2010-06-16 | Introduce Type::isIntegralOrEnumerationType(), to cover those places | Douglas Gregor |
2010-06-15 | Update equality and relationship comparisons of pointers to reflect | Douglas Gregor |
2010-06-15 | tidy up | Chris Lattner |
2010-06-10 | Another chunk of the new RecursiveASTVisitor implementation: switch the return | Chandler Carruth |
2010-06-09 | Major redesign of the RecursiveASTVisitor. This implements the majority of the | Chandler Carruth |
2010-06-08 | Warn about comparisons between arrays and improve self-comparison | Douglas Gregor |
2010-06-08 | Fixes a typo which prevented proper code gen. for | Fariborz Jahanian |
2010-06-07 | When using property-dot assignment syntax to call a setter method, | Fariborz Jahanian |
2010-06-07 | Use MaybeCreateCXXExprWithTemporaries for potential destruction of | Fariborz Jahanian |
2010-06-04 | Alter the interface of GetTypeForDeclarator to return a TypeSourceInfo*. | John McCall |
2010-06-04 | Build AST for copy-construction of copied-in | Fariborz Jahanian |
2010-06-04 | Preserve more information from a block's original function declarator, if one | John McCall |
2010-06-04 | Restructure how we interpret block-literal declarators. Correctly handle | John McCall |
2010-06-04 | Remove a couple of unnecessary uses of IsStandardConversion. | John McCall |
2010-06-02 | Fix unintentional method call due to false -> pointer conversion; patch by Di... | Daniel Dunbar |
2010-05-23 | In C++, one cannot assign from an arithmetic type to an enumeration | Douglas Gregor |
2010-05-23 | Complain about sizeof(overloaded function) rather than crashing. | Douglas Gregor |
2010-05-23 | Provide the overloaded functions for UnresolvedLookupExpr and | Douglas Gregor |
2010-05-22 | Improve our handling of reference binding for subobjects of | Douglas Gregor |
2010-05-21 | Improve parser recovery when we encounter a dependent template name | Douglas Gregor |
2010-05-21 | Introduce a method to get from an anonymous struct or union record declaration | John McCall |
2010-05-20 | Reinstate r104117, Chandler Carruth's change that "[provides] a naming | Douglas Gregor |
2010-05-20 | Renamed misleading getSourceRange -> getLocalSourceRange and getFullSourceRan... | Abramo Bagnara |
2010-05-20 | Support implicitly closing on 'this' in a block. Fixed PR7165. | John McCall |
2010-05-19 | Revert r104117, "Provide a naming class for UnresolvedLookupExprs, even when | Daniel Dunbar |
2010-05-19 | Provide a naming class for UnresolvedLookupExprs, even when occuring on | Chandler Carruth |
2010-05-19 | Implement C++ builtin operator candidates for vector types. | Douglas Gregor |
2010-05-18 | Tweak typo-correction logic a bit regarding "super", so that we | Douglas Gregor |
2010-05-17 | Determine when the instantiation of a friend function defined inside a | Douglas Gregor |
2010-05-17 | PR7117: Make sure we don't lose the calling convention for K&R-style | Eli Friedman |
2010-05-16 | fix rdar://7985267 - Don't emit an error about a non-pod argument | Chris Lattner |
2010-05-15 | Substantially alter the design of the Objective C type AST by introducing | John McCall |
2010-05-13 | Rework when and how vtables are emitted, by tracking where vtables are | Douglas Gregor |
2010-05-07 | When we encounter a non-dependent type during template instantiation, | Douglas Gregor |
2010-05-07 | A correct fix for bug 6466. | Sebastian Redl |