| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | AST: __uuidof should leak through templated types | David Majnemer | 2013-09-07 | 1 | -6/+47 |
* | Fix missing source location in CXXTemporaryObjectExpr nodes. | Enea Zaffanella | 2013-09-07 | 1 | -9/+10 |
* | Delete CC_Default and use the target default CC everywhere | Reid Kleckner | 2013-08-27 | 1 | -2/+4 |
* | Revert "Implement a rudimentary form of generic lambdas." | Manuel Klimek | 2013-08-22 | 1 | -7/+7 |
* | Constify more uses of ASTContext&. No functional change. | Craig Topper | 2013-08-22 | 1 | -49/+52 |
* | Implement a rudimentary form of generic lambdas. | Faisal Vali | 2013-08-22 | 1 | -7/+7 |
* | Properly track l-paren of a CXXFucntionalCastExpr. | Eli Friedman | 2013-08-15 | 1 | -4/+12 |
* | [-cxx-abi microsoft] Mangle __uuidof correctly into template parameters | David Majnemer | 2013-08-13 | 1 | -0/+15 |
* | Expose LambdaIntroducer::DefaultLoc in the AST's LambdaExpr. | James Dennett | 2013-08-09 | 1 | -6/+10 |
* | Fix source range of CXXNewExpr with parentheses around the type. PR15569. | Eli Friedman | 2013-06-17 | 1 | -1/+4 |
* | First pass of semantic analysis for init-captures: check the initializer, build | Richard Smith | 2013-05-16 | 1 | -4/+16 |
* | Replace ArrayRef<T>() with None, now that we have an implicit ArrayRef constr... | Dmitri Gribenko | 2013-05-05 | 1 | -2/+1 |
* | C++1y: Allow aggregates to have default initializers. | Richard Smith | 2013-04-20 | 1 | -0/+11 |
* | ArrayRef-ize ASTContext::getFunctionType and Sema::BuildFunctionType. | Jordan Rose | 2013-03-08 | 1 | -1/+2 |
* | objective-C arg: provide fixit support when | Fariborz Jahanian | 2013-02-22 | 1 | -8/+12 |
* | Remove useless 'llvm::' qualifier from names like StringRef and others that are | Dmitri Gribenko | 2013-01-12 | 1 | -1/+1 |
* | Fix for PR12222. | Erik Verbruggen | 2012-12-25 | 1 | -16/+22 |
* | PR13470: Ensure that copy-list-initialization isntantiates as | Richard Smith | 2012-12-19 | 1 | -1/+3 |
* | Change DeclContextLookup(Const)Result to (Mutable)ArrayRef<NamedDecl*>, as pe... | David Blaikie | 2012-12-19 | 1 | -3/+3 |
* | Pull the Attr iteration parts out of Attr.h, so including DeclBase.h doesn't ... | Benjamin Kramer | 2012-12-01 | 1 | -1/+2 |
* | Fix a source range regression in C++ new expressions with call initializers. | David Blaikie | 2012-11-08 | 1 | -0/+8 |
* | PR13552: Fix the end location of a CXXNewExpr. | David Blaikie | 2012-11-07 | 1 | -14/+2 |
* | DR1442: In a range-based for statement, namespace 'std' is not an associated | Richard Smith | 2012-10-18 | 1 | -1/+1 |
* | 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 |