Age | Commit message (Expand) | Author |
2013-04-20 | C++1y: Allow aggregates to have default initializers. | Richard Smith |
2013-03-08 | ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. | Jordan Rose |
2013-02-22 | objective-C arg: provide fixit support when | Fariborz Jahanian |
2013-01-12 | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko |
2012-12-25 | Fix for PR12222. | Erik Verbruggen |
2012-12-19 | PR13470: Ensure that copy-list-initialization isntantiates as | Richard Smith |
2012-12-19 | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie |
2012-12-01 | Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ... | Benjamin Kramer |
2012-11-08 | Fix a source range regression in C++ new expressions with call initializers. | David Blaikie |
2012-11-07 | PR13552: Fix the end location of a CXXNewExpr. | David Blaikie |
2012-10-18 | DR1442: In a range-based for statement, namespace 'std' is not an associated | Richard Smith |
2012-10-11 | Add codegen support for __uuidof(). | Nico Weber |
2012-09-12 | PR13811: Add a FunctionParmPackExpr node to handle references to function | Richard Smith |
2012-08-24 | Push ArrayRef through the Expr hierarchy. | Benjamin Kramer |
2012-08-21 | Switch some realignment calculations over to llvm::RoundUpToAlignment. | Richard Smith |
2012-08-21 | Fix alignment of array of VarDecl* following array of unsigned in LambdaExpr. | Richard Smith |
2012-08-13 | PR13570: When an unresolved overloaded call appeared in a dependent context, we | Richard Smith |
2012-08-13 | Factor out computation of whether a typeid's expression is potentially | Richard Smith |
2012-08-10 | Provide isConst/Volatile on CXXMethodDecl. | David Blaikie |
2012-08-03 | Enhance getImplicitObjectArgument to look through ->*. | Jordan Rose |
2012-07-25 | PR12057: Allow variadic template pack expansions to cross lambda boundaries. | Richard Smith |
2012-07-09 | The delete argument should not be converted to void*. | Abramo Bagnara |
2012-07-04 | Drop the ASTContext.h include from DeclFriend.h and DeclTemplate.h. | Benjamin Kramer |
2012-06-19 | Do not crash when we dynamic cast a final type to void*. | Sean Hunt |
2012-06-19 | Revert r158700 and dependent patches r158716, r158717, and r158731. | Jakob Stoklund Olesen |
2012-06-19 | Improve the specification of spellings in Attr.td. | Sean Hunt |
2012-05-03 | Correctly constify clang::CXXMemberCallExpr::getRecordDecl() | David Blaikie |
2012-05-01 | Utilize getLocStart()/getLocEnd() on my recent change. | Argyrios Kyrtzidis |
2012-04-30 | Store the source range of a CXXOperatorCallExpr in the Expr object instead of | Argyrios Kyrtzidis |
2012-04-04 | Move the computation of the lambda mangling information (mangling | Douglas Gregor |
2012-03-07 | AST representation for user-defined literals, plus just enough of semantic | Richard Smith |
2012-02-26 | Reorder members to save padding. | Benjamin Kramer |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
2012-02-21 | Implement non-internal linkage for lambda closure types that need a | Douglas Gregor |
2012-02-21 | Implement name mangling for lambda expressions that occur within the | Douglas Gregor |
2012-02-20 | Basic support for name mangling of C++11 lambda expressions. Because | Douglas Gregor |
2012-02-16 | Pacify gcc's -Wreturn-type | Matt Beaumont-Gay |
2012-02-16 | Revert "Revert "Make CXXNewExpr contain only a single initialier, and not hol... | Sebastian Redl |
2012-02-16 | Revert "Make CXXNewExpr contain only a single initialier, and not hold the us... | Sebastian Redl |
2012-02-16 | Make CXXNewExpr contain only a single initialier, and not hold the used const... | Sebastian Redl |
2012-02-14 | Implement AST (de-)serialization for lambda expressions. | Douglas Gregor |
2012-02-13 | Introduce support for template instantiation of lambda | Douglas Gregor |
2012-02-13 | Sink variable into assert | Matt Beaumont-Gay |
2012-02-13 | Split the storage of lambda information between the LambdaExpr and the | Douglas Gregor |
2012-02-13 | Keep track of the set of array index variables we use when we | Douglas Gregor |
2012-02-13 | Don't allocate unused storage for captures/capture initializers in lambda exp... | Douglas Gregor |
2012-02-13 | Move the storage of lambda captures and capture initializers from | Douglas Gregor |
2012-02-11 | Represent C++ direct initializers as ParenListExprs before semantic analysis | Sebastian Redl |
2012-02-07 | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor |
2012-02-06 | Fixed instantiation of DependentScopeDeclRefExpr. | Abramo Bagnara |