Age | Commit message (Expand) | Author |
2009-10-23 | Eliminate QualifiedDeclRefExpr, which captured the notion of a | Douglas Gregor |
2009-09-04 | Implement AST, semantics, and CodeGen for C++ pseudo-destructor | Douglas Gregor |
2009-08-31 | Eliminate CXXAdornedMemberExpr entirely. Instead, optionally allocate | Douglas Gregor |
2009-08-31 | Rename CXXQualifiedMemberExpr -> CXXAdornedMemberExpr, since we will | Douglas Gregor |
2009-08-26 | When a member reference expression includes a qualifier on the member | Douglas Gregor |
2009-08-20 | Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRef... | Fariborz Jahanian |
2009-08-18 | Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. | Fariborz Jahanian |
2009-08-11 | Refactor the template-instantiation logic for expressions into a | Douglas Gregor |
2009-08-10 | Take 2 on AltiVec-style vector initializers. | Nate Begeman |
2009-08-10 | Revert r78535, it is causing a number of failures to build projects. | Daniel Dunbar |
2009-08-09 | AltiVec-style vector initializer syntax, vec4 a = (vec4)(a, b, c, d); | Nate Begeman |
2009-07-24 | Allow front-end 'isa' access on object's of type 'id'. | Steve Naroff |
2009-06-30 | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor |
2009-05-30 | Add a CXXBindTemporaryExpr. | Anders Carlsson |
2009-05-22 | Representation of and template instantiation for member | Douglas Gregor |
2009-05-20 | Introduce a new expression type, CXXUnresolvedConstructExpr, to | Douglas Gregor |
2009-05-15 | Introduce the EXPR macro into StmtNodes.def, so that we can | Douglas Gregor |
2009-05-10 | Implement C++0x nullptr. | Sebastian Redl |
2009-05-01 | Get rid of CXXDestroyExpr. | Anders Carlsson |
2009-05-01 | Rename CXXExprWithCleanup to CXXExprWithTemporaries. | Anders Carlsson |
2009-04-26 | Update StmtNodes.def with the new base class of CXXTemporaryObjectExpr | Sebastian Redl |
2009-04-24 | Add CXXExprWithCleanup | Anders Carlsson |
2009-04-23 | Add a CXXConstructExpr that represents an implicit call to a C++ constructor.... | Anders Carlsson |
2009-04-21 | Add a CXXDestroyExpr. Add classof member functions to CXXTempVarDecl. | Anders Carlsson |
2009-03-19 | Introduce a new expression type, UnresolvedDeclRefExpr, that describes | Douglas Gregor |
2009-02-18 | rip out __builtin_overload | Chris Lattner |
2009-02-04 | Fix our semantic analysis of | Douglas Gregor |
2009-01-29 | Introduce a new expression node, ImplicitValueInitExpr, that | Douglas Gregor |
2009-01-22 | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor |
2009-01-16 | Part one of handling C++ functional casts. This handles semantic | Douglas Gregor |
2009-01-06 | Add QualifiedDeclRefExpr, which retains additional source-location | Douglas Gregor |
2009-01-05 | PODness and Type Traits | Sebastian Redl |
2008-12-22 | Full AST support and better Sema support for C++ try-catch. | Sebastian Redl |
2008-12-22 | Partial AST and Sema support for C++ try-catch. | Sebastian Redl |
2008-12-22 | Add support for calls to overloaded member functions. Things to note: | Douglas Gregor |
2008-12-06 | Add support for calls to dependent names within templates, e.g., | Douglas Gregor |
2008-11-29 | CXXFunctionalCastExpr inherits from ExplicitCastExpr. | Anders Carlsson |
2008-11-29 | Implement the GNU __null extension | Douglas Gregor |
2008-11-22 | New AST node to access "implicit" setter/getter using property dor syntax. | Fariborz Jahanian |
2008-11-21 | Implementation of new and delete parsing and sema. | Sebastian Redl |
2008-11-14 | Add a new expression node, CXXOperatorCallExpr, which expresses a | Douglas Gregor |
2008-11-14 | Don't require us to manually number the statements and expressions in StmtNod... | Douglas Gregor |
2008-11-11 | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl |
2008-11-11 | Implement C++ 'typeid' parsing and sema. | Sebastian Redl |
2008-11-04 | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor |
2008-11-04 | Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary ... | Douglas Gregor |
2008-10-28 | Rename ExplicitCCastExpr to CStyleCastExpr | Douglas Gregor |
2008-10-28 | Improve our handling of (C++) references within Clang. Specifically: | Douglas Gregor |
2008-10-27 | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor |
2008-09-17 | Remove BlockStmtExpr. | Steve Naroff |