| Commit message (Expand) | Author | Age | Files | Lines |
| * | Add codegen support for __uuidof(). | Nico Weber | 2012-10-11 | 1 | -0/+20 |
| * | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith | 2012-09-12 | 1 | -0/+28 |
| * | Push ArrayRef through the Expr hierarchy. | Benjamin Kramer | 2012-08-24 | 1 | -21/+17 |
| * | Switch some realignment calculations over to llvm::RoundUpToAlignment. | Richard Smith | 2012-08-21 | 1 | -2/+1 |
| * | Fix alignment of array of VarDecl* following array of unsigned in LambdaExpr. | Richard Smith | 2012-08-21 | 1 | -3/+7 |
| * | PR13570: When an unresolved overloaded call appeared in a dependent context, we | Richard Smith | 2012-08-13 | 1 | -0/+1 |
| * | Factor out computation of whether a typeid's expression is potentially | Richard Smith | 2012-08-13 | 1 | -0/+15 |
| * | Provide isConst/Volatile on CXXMethodDecl. | David Blaikie | 2012-08-10 | 1 | -1/+1 |
| * | Enhance getImplicitObjectArgument to look through ->*. | Jordan Rose | 2012-08-03 | 1 | -2/+5 |
| * | PR12057: Allow variadic template pack expansions to cross lambda boundaries. | Richard Smith | 2012-07-25 | 1 | -4/+6 |
| * | The delete argument should not be converted to void*. | Abramo Bagnara | 2012-07-09 | 1 | -7/+0 |
| * | Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. | Benjamin Kramer | 2012-07-04 | 1 | -0/+1 |
| * | Do not crash when we dynamic cast a final type to void*. | Alexis Hunt | 2012-06-19 | 1 | -0/+3 |
| * | Revert r158700 and dependent patches r158716, r158717, and r158731. | Jakob Stoklund Olesen | 2012-06-19 | 1 | -0/+3 |
| * | Improve the specification of spellings in Attr.td. | Alexis Hunt | 2012-06-19 | 1 | -3/+0 |
| * | Correctly constify clang::CXXMemberCallExpr::getRecordDecl() | David Blaikie | 2012-05-03 | 1 | -1/+1 |
| * | Utilize getLocStart()/getLocEnd() on my recent change. | Argyrios Kyrtzidis | 2012-05-01 | 1 | -9/+6 |
| * | Store the source range of a CXXOperatorCallExpr in the Expr object instead of | Argyrios Kyrtzidis | 2012-04-30 | 1 | -2/+2 |
| * | Move the computation of the lambda mangling information (mangling | Douglas Gregor | 2012-04-04 | 1 | -12/+3 |
| * | AST representation for user-defined literals, plus just enough of semantic | Richard Smith | 2012-03-07 | 1 | -0/+33 |
| * | Reorder members to save padding. | Benjamin Kramer | 2012-02-26 | 1 | -4/+4 |
| * | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor | 2012-02-24 | 1 | -1/+47 |
| * | Implement non-internal linkage for lambda closure types that need a | Douglas Gregor | 2012-02-21 | 1 | -1/+4 |
| * | Implement name mangling for lambda expressions that occur within the | Douglas Gregor | 2012-02-21 | 1 | -3/+6 |
| * | Basic support for name mangling of C++11 lambda expressions. Because | Douglas Gregor | 2012-02-20 | 1 | -3/+6 |
| * | Pacify gcc's -Wreturn-type | Matt Beaumont-Gay | 2012-02-16 | 1 | -0/+1 |
| * | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl | 2012-02-16 | 1 | -31/+38 |
| * | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl | 2012-02-16 | 1 | -38/+31 |
| * | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl | 2012-02-16 | 1 | -31/+38 |
| * | Implement AST (de-)serialization for lambda expressions. | Douglas Gregor | 2012-02-14 | 1 | -0/+17 |
| * | Introduce support for template instantiation of lambda | Douglas Gregor | 2012-02-13 | 1 | -2/+5 |
| * | Sink variable into assert | Matt Beaumont-Gay | 2012-02-13 | 1 | -2/+2 |
| * | Split the storage of lambda information between the LambdaExpr and the | Douglas Gregor | 2012-02-13 | 1 | -41/+52 |
| * | Keep track of the set of array index variables we use when we | Douglas Gregor | 2012-02-13 | 1 | -1/+20 |
| * | Don't allocate unused storage for captures/capture initializers in lambda exp... | Douglas Gregor | 2012-02-13 | 1 | -6/+3 |
| * | Move the storage of lambda captures and capture initializers from | Douglas Gregor | 2012-02-13 | 1 | -19/+56 |
| * | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl | 2012-02-11 | 1 | -3/+7 |
| * | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor | 2012-02-07 | 1 | -0/+107 |
| * | Fixed instantiation of DependentScopeDeclRefExpr. | Abramo Bagnara | 2012-02-06 | 1 | -5/+7 |
| * | Added source location for the template keyword in AST template-id expressions. | Abramo Bagnara | 2012-01-27 | 1 | -52/+77 |
| * | Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_... | David Blaikie | 2011-12-20 | 1 | -1/+1 |
| * | In Sema::MaybeBindToTemporary, create a CXXBindTemporaryExpr for an | Peter Collingbourne | 2011-11-27 | 1 | -2/+3 |
| * | There's no good reason to track temporaries in ExprWithCleanups, | John McCall | 2011-11-10 | 1 | -19/+21 |
| * | Added a flag to identify resolved overloaded function references. | Abramo Bagnara | 2011-10-05 | 1 | -4/+12 |
| * | Re-arrange and bitfieldify data members of CXXConstructExpr to save a | Douglas Gregor | 2011-09-26 | 1 | -3/+3 |
| * | Rename ExplicitTemplateArgumentList -> ASTTemplateArgumentListInfo, no functi... | Argyrios Kyrtzidis | 2011-09-22 | 1 | -9/+9 |
| * | Teach CXXUnresolvedConstructExpr when it should be an | Douglas Gregor | 2011-07-08 | 1 | -1/+4 |
| * | Introduce the notion of instantiation dependence into Clang's AST. A | Douglas Gregor | 2011-07-01 | 1 | -8/+47 |
| * | Make yet another placeholder type, this one marking that an expression is a b... | John McCall | 2011-04-26 | 1 | -0/+27 |
| * | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -1/+1 |