| Commit message (Expand) | Author | Age | Files | Lines |
| * | Create a new TypeNodes.def file that enumerates all of the types, | Douglas Gregor | 2009-02-26 | 1 | -3/+3 |
| * | rip out __builtin_overload | Chris Lattner | 2009-02-18 | 1 | -9/+0 |
| * | Add private extern to pretty printer(s). | Mike Stump | 2009-02-10 | 1 | -5/+6 |
| * | Fixup -ast-print so that: | Mike Stump | 2009-02-10 | 1 | -11/+26 |
| * | Fix pretty-printing of if conditions. Patch by Ben Lickly. | Sebastian Redl | 2009-02-07 | 1 | -1/+2 |
| * | Fix our semantic analysis of | Douglas Gregor | 2009-02-04 | 1 | -2/+2 |
| * | Introduce a new expression node, ImplicitValueInitExpr, that | Douglas Gregor | 2009-01-29 | 1 | -0/+4 |
| * | Code generation support for C99 designated initializers. | Douglas Gregor | 2009-01-28 | 1 | -3/+30 |
| * | Initial implementation of semantic analysis and ASTs for C99 | Douglas Gregor | 2009-01-22 | 1 | -0/+4 |
| * | Remove ScopedDecl, collapsing all of its functionality into Decl, so | Douglas Gregor | 2009-01-20 | 1 | -7/+3 |
| * | make ast-print handle random non-printable characters correctly with octal es... | Chris Lattner | 2009-01-16 | 1 | -3/+13 |
| * | Part one of handling C++ functional casts. This handles semantic | Douglas Gregor | 2009-01-16 | 1 | -0/+13 |
| * | Revert my previous, failed attempt to pretty-print anonymous struct/union acc... | Douglas Gregor | 2009-01-08 | 1 | -4/+5 |
| * | Fix printing of member references to avoid displaying implicitly-generated me... | Douglas Gregor | 2009-01-07 | 1 | -2/+4 |
| * | Add QualifiedDeclRefExpr, which retains additional source-location | Douglas Gregor | 2009-01-06 | 1 | -0/+30 |
| * | PODness and Type Traits | Sebastian Redl | 2009-01-05 | 1 | -0/+26 |
| * | Full AST support and better Sema support for C++ try-catch. | Sebastian Redl | 2008-12-22 | 1 | -2/+18 |
| * | Partial AST and Sema support for C++ try-catch. | Sebastian Redl | 2008-12-22 | 1 | -0/+11 |
| * | Add support for calls to overloaded member functions. Things to note: | Douglas Gregor | 2008-12-22 | 1 | -0/+4 |
| * | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor | 2008-12-20 | 1 | -4/+1 |
| * | Add support for calls to dependent names within templates, e.g., | Douglas Gregor | 2008-12-06 | 1 | -0/+4 |
| * | Several things... | Steve Naroff | 2008-12-04 | 1 | -1/+1 |
| * | Correct pretty printing of array new expressions. | Sebastian Redl | 2008-12-02 | 1 | -4/+9 |
| * | Handle new by passing the Declaration to the Action, not a processed type. | Sebastian Redl | 2008-12-02 | 1 | -0/+3 |
| * | Implement the GNU __null extension | Douglas Gregor | 2008-11-29 | 1 | -0/+4 |
| * | Migrate some stuff from NamedDecl::getName() to | Chris Lattner | 2008-11-24 | 1 | -12/+12 |
| * | Rename Selector::getName() to Selector::getAsString(), and add | Chris Lattner | 2008-11-24 | 1 | -1/+1 |
| * | New AST node to access "implicit" setter/getter using property dor syntax. | Fariborz Jahanian | 2008-11-22 | 1 | -0/+8 |
| * | Implementation of new and delete parsing and sema. | Sebastian Redl | 2008-11-21 | 1 | -0/+43 |
| * | Add a new expression node, CXXOperatorCallExpr, which expresses a | Douglas Gregor | 2008-11-14 | 1 | -0/+43 |
| * | Don't require us to manually number the statements and expressions in StmtNod... | Douglas Gregor | 2008-11-14 | 1 | -1/+1 |
| * | Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr... | Sebastian Redl | 2008-11-11 | 1 | -6/+9 |
| * | Implement C++ 'typeid' parsing and sema. | Sebastian Redl | 2008-11-11 | 1 | -0/+10 |
| * | Add a new expression class, ObjCSuperExpr, to handle the Objective-C 'super'.... | Douglas Gregor | 2008-11-04 | 1 | -3/+4 |
| * | Create a new expression class, CXXThisExpr, to handle the C++ 'this' primary ... | Douglas Gregor | 2008-11-04 | 1 | -0/+4 |
| * | Rename ExplicitCCastExpr to CStyleCastExpr | Douglas Gregor | 2008-10-28 | 1 | -1/+1 |
| * | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor | 2008-10-27 | 1 | -4/+23 |
| * | - Add BlockDecl AST node. | Steve Naroff | 2008-10-08 | 1 | -6/+7 |
| * | Added PrintRawDeclStmt; use this method to print out DeclStmt instead of usin... | Ted Kremenek | 2008-10-06 | 1 | -5/+19 |
| * | Remove BlockStmtExpr. | Steve Naroff | 2008-09-17 | 1 | -6/+1 |
| * | Remove support for BlockExprExpr. For example... | Steve Naroff | 2008-09-16 | 1 | -5/+0 |
| * | Patch by Csaba Hruska! | Ted Kremenek | 2008-09-13 | 1 | -6/+7 |
| * | Add new 'CXXConditionDeclExpr' expression node used for a 'condition' declara... | Argyrios Kyrtzidis | 2008-09-09 | 1 | -0/+5 |
| * | Add semantic analysis for "blocks". | Steve Naroff | 2008-09-03 | 1 | -0/+40 |
| * | Add support for C++'s "type-specifier ( expression-list )" expression: | Argyrios Kyrtzidis | 2008-08-22 | 1 | -0/+11 |
| * | Add ExplicitCastExpr to replace the current CastExpr, and have ImplicitCastEx... | Argyrios Kyrtzidis | 2008-08-18 | 1 | -1/+4 |
| * | More #include cleaning | Daniel Dunbar | 2008-08-11 | 1 | -5/+0 |
| * | Cleanup ObjCSuperRefExpr (remove last usage and AST node:-). | Steve Naroff | 2008-08-10 | 1 | -4/+0 |
| * | rename PreDefinedExpr -> PredefinedExpr | Chris Lattner | 2008-08-10 | 1 | -5/+5 |
| * | change more instances of QualType::getCanonicalType to call | Chris Lattner | 2008-07-26 | 1 | -1/+1 |