| Commit message (Expand) | Author | Age | Files | Lines | 
| *  | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor | 2011-07-27 | 1 | -2/+2 | 
| *  | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall | 2011-07-15 | 1 | -0/+6 | 
| *  | Fix a missing space noticed by matthewbg in code review. | Chandler Carruth | 2011-06-21 | 1 | -1/+1 | 
| *  | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor | 2011-06-21 | 1 | -0/+5 | 
| *  | Make the Stmt::Profile method const, and the StmtProfile visitor | Chandler Carruth | 2011-06-16 | 1 | -139/+151 | 
| *  | Automatic Reference Counting. | John McCall | 2011-06-15 | 1 | -0/+15 | 
| *  | Add support for builtin astype: | Tanya Lattner | 2011-06-04 | 1 | -0/+4 | 
| *  | Store a parameter index and function prototype depth in every | John McCall | 2011-05-01 | 1 | -5/+9 | 
| *  | Parsing/AST support for Structured Exception Handling | John Wiegley | 2011-04-28 | 1 | -0/+12 | 
| *  | Implementation of Embarcadero array type traits | John Wiegley | 2011-04-28 | 1 | -0/+6 | 
| *  | t/clang/expr-traits | John Wiegley | 2011-04-25 | 1 | -0/+6 | 
| *  | C1X: implement generic selections | Peter Collingbourne | 2011-04-15 | 1 | -0/+12 | 
| *  | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith | 2011-04-14 | 1 | -0/+4 | 
| *  | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne | 2011-03-11 | 1 | -2/+2 | 
| *  | Change the representation of GNU ?: expressions to use a different expression | John McCall | 2011-02-17 | 1 | -0/+4 | 
| *  | Step #1/N of implementing support for __label__: split labels into | Chris Lattner | 2011-02-17 | 1 | -3/+3 | 
| *  | Give some convenient idiomatic accessors to Stmt::child_range and | John McCall | 2011-02-13 | 1 | -2/+1 | 
| *  | AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions | Peter Collingbourne | 2011-02-09 | 1 | -0/+4 | 
| *  | A few more tweaks to the blocks AST representation:            | John McCall | 2011-02-07 | 1 | -2/+0 | 
| *  | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor | 2011-01-15 | 1 | -0/+7 | 
| *  | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad | 2011-01-12 | 1 | -3/+3 | 
| *  | Replace the representation of template template argument pack | Douglas Gregor | 2011-01-05 | 1 | -1/+2 | 
| *  | Implement support for template template parameter packs, e.g., | Douglas Gregor | 2011-01-05 | 1 | -1/+2 | 
| *  | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor | 2011-01-04 | 1 | -0/+5 | 
| *  | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor | 2011-01-03 | 1 | -0/+4 | 
| *  | When instantiating a non-type template parameter pack, be sure to | Douglas Gregor | 2010-12-24 | 1 | -0/+1 | 
| *  | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet | 2010-12-08 | 1 | -6/+0 | 
| *  | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet | 2010-12-07 | 1 | -0/+7 | 
| *  | Rename CXXExprWithTemporaries -> ExprWithCleanups;  there's no theoretical | John McCall | 2010-12-06 | 1 | -4/+1 | 
| *  | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall | 2010-12-02 | 1 | -13/+6 | 
| *  | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall | 2010-11-15 | 1 | -0/+4 | 
| *  | Eliminate usage of ObjCSuperExpr used for | Fariborz Jahanian | 2010-10-14 | 1 | -4/+8 | 
| *  | Define and implement CXXNoexceptExpr. Create it in Sema. | Sebastian Redl | 2010-09-10 | 1 | -0/+4 | 
| *  | Microsoft's __uuidof operator implementation part 1. | Francois Pichet | 2010-09-08 | 1 | -0/+6 | 
| *  | Eliminate CXXBindReferenceExpr, which was used in a ton of | Douglas Gregor | 2010-09-02 | 1 | -4/+0 | 
| *  | Revert my user-defined literal commits - r1124{58,60,67} pending | Alexis Hunt | 2010-08-30 | 1 | -6/+0 | 
| *  | Implement C++0x user-defined string literals. | Alexis Hunt | 2010-08-29 | 1 | -0/+6 | 
| *  | GCC didn't care for my attempt at API compatibility, so brute-force everything | John McCall | 2010-08-25 | 1 | -45/+45 | 
| *  | More incremental progress towards not including Expr.h in Sema.h. | John McCall | 2010-08-25 | 1 | -1/+1 | 
| *  | Call the base class in StmtProfiler::VisitOverloadExpr. | Argyrios Kyrtzidis | 2010-08-15 | 1 | -0/+1 | 
| *  | Call the correct base class in StmtProfiler::VisitUnresolvedLookupExpr. | Argyrios Kyrtzidis | 2010-08-15 | 1 | -4/+8 | 
| *  | Update ImplicitCastExpr to be able to represent an XValue. | Sebastian Redl | 2010-07-20 | 1 | -1/+1 | 
| *  | When computing the canonical profile of a DeclRefExpr or MemberExpr, | Douglas Gregor | 2010-07-13 | 1 | -3/+6 | 
| *  | Reinstate the fix for PR7556. A silly use of isTrivial() was | Douglas Gregor | 2010-07-08 | 1 | -1/+1 | 
| *  | Revert r107828 and r107827, the fix for PR7556, which seems to be | Douglas Gregor | 2010-07-07 | 1 | -1/+1 | 
| *  | Rename CXXZeroInitValueExpr to CXXScalarValueInitExpr, to reflect its | Douglas Gregor | 2010-07-07 | 1 | -1/+1 | 
| *  | Added a field to BlockDeclRefExpr for future use. | Fariborz Jahanian | 2010-06-04 | 1 | -0/+2 | 
| *  | Fill in some silly defaults to silence a GCC warning | Douglas Gregor | 2010-05-19 | 1 | -2/+2 | 
| *  | Profile type-dependent uses of overloaded operators in C++ the same | Douglas Gregor | 2010-05-19 | 1 | -0/+208 | 
| *  | Reapplying patch to change StmtNodes.def to StmtNodes.td, this time | Alexis Hunt | 2010-05-05 | 1 | -1/+1 |