| Commit message (Expand) | Author | Age | Files | Lines |
| * | AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions | Peter Collingbourne | 2011-02-09 | 1 | -2/+36 |
| * | Remove vtables from the Stmt hierarchy; this was pretty easy as | John McCall | 2011-02-09 | 1 | -7/+1 |
| * | A few more tweaks to the blocks AST representation: | John McCall | 2011-02-07 | 1 | -2/+2 |
| * | Assert during instantiation of blocks that we've captured everything that | John McCall | 2011-02-04 | 1 | -39/+61 |
| * | Rvalue references for *this: | Douglas Gregor | 2011-01-26 | 1 | -2/+5 |
| * | Teach TemplateSpecializationTypeLoc::initializeArgLocs() to actually | Douglas Gregor | 2011-01-25 | 1 | -3/+3 |
| * | Be a bit more defensive about setting the temporary base location | Douglas Gregor | 2011-01-25 | 1 | -1/+3 |
| * | Enhance the diagnostic for referring to a typedef with an elaborated name to be | Nick Lewycky | 2011-01-24 | 1 | -3/+22 |
| * | Implement basic support for the use of variadic templates and blocks | Douglas Gregor | 2011-01-19 | 1 | -11/+27 |
| * | Change the canonical representation of array types to store qualifiers on the | John McCall | 2011-01-19 | 1 | -8/+11 |
| * | Change QualType::getTypePtr() to return a const pointer, then change a | John McCall | 2011-01-19 | 1 | -19/+19 |
| * | Fix warnings found by gcc-4.6, from -Wunused-but-set-variable and | Jeffrey Yasskin | 2011-01-18 | 1 | -1/+0 |
| * | Introduce a new kind of TemplateName that captures a substituted | Douglas Gregor | 2011-01-15 | 1 | -1/+29 |
| * | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor | 2011-01-15 | 1 | -0/+8 |
| * | Teach template template argument pack expansions to keep track of the | Douglas Gregor | 2011-01-14 | 1 | -1/+1 |
| * | Handle substitutions into function parameter packs whose patterns | Douglas Gregor | 2011-01-14 | 1 | -9/+45 |
| * | Teach PackExpansionExpr to keep track of the number of pack expansions | Douglas Gregor | 2011-01-14 | 1 | -9/+14 |
| * | Keep track of the number of expansions to be produced from a type pack | Douglas Gregor | 2011-01-14 | 1 | -23/+40 |
| * | Start implementing support for substitution into pack expansions that | Douglas Gregor | 2011-01-14 | 1 | -0/+7 |
| * | Allow us to transform pack expansion expressions. | Douglas Gregor | 2011-01-13 | 1 | -2/+8 |
| * | Teach TreeTransform how to transform a pack expansion type into | Douglas Gregor | 2011-01-12 | 1 | -2/+28 |
| * | Implement partial ordering of class template partial specializations | Douglas Gregor | 2011-01-11 | 1 | -0/+12 |
| * | Implement more of C++0x [temp.arg.explicit]p9, allowing extension of | Douglas Gregor | 2011-01-10 | 1 | -2/+26 |
| * | Work-in-progress implementation of C++0x [temp.arg.explicit]p9, which | Douglas Gregor | 2011-01-10 | 1 | -7/+77 |
| * | Fix a valgrind error when transforming function prototypes with | Douglas Gregor | 2011-01-07 | 1 | -0/+1 |
| * | Implement substitution of a function parameter pack for its set of | Douglas Gregor | 2011-01-07 | 1 | -0/+6 |
| * | Factor out the template transformation of a sequence of function | Douglas Gregor | 2011-01-07 | 1 | -21/+35 |
| * | Introduce an AttributedType, but don't actually use it anywhere yet. | John McCall | 2011-01-06 | 1 | -1/+37 |
| * | Eliminate an unnecessary dance where we tried to cope with the lack of | Douglas Gregor | 2011-01-05 | 1 | -16/+6 |
| * | Initial implementation of function parameter packs. This implementation allows: | Douglas Gregor | 2011-01-05 | 1 | -16/+110 |
| * | Eliminate two "unsupported" errors relating to variadic templates: one | Douglas Gregor | 2011-01-05 | 1 | -3/+1 |
| * | Replace the representation of template template argument pack | Douglas Gregor | 2011-01-05 | 1 | -3/+16 |
| * | Refactor the application of type attributes so that attributes from | John McCall | 2011-01-05 | 1 | -10/+11 |
| * | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor | 2011-01-04 | 1 | -0/+39 |
| * | Properly rebuild pack expansions whose pattern is a non-type template | Douglas Gregor | 2011-01-03 | 1 | -3/+10 |
| * | Implement support for pack expansions in initializer lists and | Douglas Gregor | 2011-01-03 | 1 | -0/+65 |
| * | Refactor the tree transform's many loops over sets of expressions | Douglas Gregor | 2011-01-03 | 1 | -122/+98 |
| * | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 1 | -0/+7 |
| * | Add some const qualifiers | Douglas Gregor | 2010-12-21 | 1 | -2/+2 |
| * | Implement instantiation of pack expansions whose pattern is a type-id | Douglas Gregor | 2010-12-21 | 1 | -3/+2 |
| * | Further refactoring of the tree transformation for template argument | Douglas Gregor | 2010-12-20 | 1 | -42/+164 |
| * | Implement basic support for template instantiation of pack expansions | Douglas Gregor | 2010-12-20 | 1 | -12/+161 |
| * | Remove unused variable | Matt Beaumont-Gay | 2010-12-20 | 1 | -2/+0 |
| * | Finish refactoring the transformation of template argument lists, | Douglas Gregor | 2010-12-20 | 1 | -15/+40 |
| * | Refactor the transformation of template argument lists to centralize | Douglas Gregor | 2010-12-20 | 1 | -37/+58 |
| * | Introduce a new type, PackExpansionType, to capture types that are | Douglas Gregor | 2010-12-20 | 1 | -0/+9 |
| * | Keep the source location of the selector in ObjCMessageExpr. | Argyrios Kyrtzidis | 2010-12-10 | 1 | -4/+8 |
| * | Added ParenType type node. | Abramo Bagnara | 2010-12-10 | 1 | -0/+30 |
| * | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -37/+0 |
| * | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 1 | -0/+33 |