Age | Commit message (Expand) | Author |
2012-04-19 | Implements boxed expressions for Objective-C. <rdar://problem/10194391> | Patrick Beard |
2012-04-16 | Implement C++11 [expr.prim.general]p3, which permits the use of 'this' | Douglas Gregor |
2012-04-14 | Add an AttributedStmt type to represent a statement with C++11 attributes | Richard Smith |
2012-04-02 | PR12438: Profile a reference to a type template parameter by depth and index, | Richard Smith |
2012-03-10 | Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to | John McCall |
2012-03-07 | AST representation for user-defined literals, plus just enough of semantic | Richard Smith |
2012-03-06 | Add clang support for new Objective-C literal syntax for NSDictionary, NSArray, | Ted Kremenek |
2012-03-01 | StmtProfiler: Add a null check for child statements. | Peter Collingbourne |
2012-02-24 | Implement a new type trait __is_trivially_constructible(T, Args...) | Douglas Gregor |
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-07 | Introduce basic ASTs for lambda expressions. This covers: | Douglas Gregor |
2012-01-20 | More dead code removal (using -Wunreachable-code) | David Blaikie |
2011-11-06 | Change the AST representation of operations on Objective-C | John McCall |
2011-11-02 | Use StringLiteral::getBytes(), not StringLiteral::getString(), when profiling... | Douglas Gregor |
2011-10-25 | Implement support for dependent Microsoft __if_exists/__if_not_exists | Douglas Gregor |
2011-10-14 | Misc fixes for atomics. Biggest fix is doing alignment correctly for _Atomic... | Eli Friedman |
2011-10-11 | Initial implementation of __atomic_* (everything except __atomic_is_lock_free). | Eli Friedman |
2011-07-27 | Add support for C++0x unicode string and character literals, from Craig Topper! | Douglas Gregor |
2011-07-15 | Create a new expression node, SubstNonTypeTemplateParmExpr, | John McCall |
2011-06-21 | Fix a missing space noticed by matthewbg in code review. | Chandler Carruth |
2011-06-21 | Introduce a new AST node describing reference binding to temporaries. | Douglas Gregor |
2011-06-16 | Make the Stmt::Profile method const, and the StmtProfile visitor | Chandler Carruth |
2011-06-15 | Automatic Reference Counting. | John McCall |
2011-06-04 | Add support for builtin astype: | Tanya Lattner |
2011-05-01 | Store a parameter index and function prototype depth in every | John McCall |
2011-04-28 | Parsing/AST support for Structured Exception Handling | John Wiegley |
2011-04-28 | Implementation of Embarcadero array type traits | John Wiegley |
2011-04-25 | t/clang/expr-traits | John Wiegley |
2011-04-15 | C1X: implement generic selections | Peter Collingbourne |
2011-04-14 | Add support for C++0x's range-based for loops, as specified by the C++11 draf... | Richard Smith |
2011-03-11 | Add support for the OpenCL vec_step operator, by generalising and | Peter Collingbourne |
2011-02-17 | Change the representation of GNU ?: expressions to use a different expression | John McCall |
2011-02-17 | Step #1/N of implementing support for __label__: split labels into | Chris Lattner |
2011-02-13 | Give some convenient idiomatic accessors to Stmt::child_range and | John McCall |
2011-02-09 | AST, Sema, Serialization: add CUDAKernelCallExpr and related semantic actions | Peter Collingbourne |
2011-02-07 | A few more tweaks to the blocks AST representation: | John McCall |
2011-01-15 | Introduce a new expression kind, SubstNonTypeTemplateParmPackExpr, | Douglas Gregor |
2011-01-12 | PR3558: mark "logically const" accessor methods in ASTContext as const, | Jay Foad |
2011-01-05 | Replace the representation of template template argument pack | Douglas Gregor |
2011-01-05 | Implement support for template template parameter packs, e.g., | Douglas Gregor |
2011-01-04 | Implement the sizeof...(pack) expression to compute the length of a | Douglas Gregor |
2011-01-03 | Implement support for pack expansions whose pattern is a non-type | Douglas Gregor |
2010-12-24 | When instantiating a non-type template parameter pack, be sure to | Douglas Gregor |
2010-12-08 | Remove the TypesCompatibleExprClass AST node. Merge its functionality into Bi... | Francois Pichet |
2010-12-07 | Type traits intrinsic implementation: __is_base_of(T, U) | Francois Pichet |
2010-12-06 | Rename CXXExprWithTemporaries -> ExprWithCleanups; there's no theoretical | John McCall |
2010-12-02 | Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPrope... | John McCall |
2010-11-15 | Add a new expression kind, OpaqueValueExpr, which is useful for | John McCall |