Age | Commit message (Expand) | Author |
2009-04-22 | Remove the serialization code that predates precompiled | Douglas Gregor |
2009-04-19 | Add location info for indirect goto. | Chris Lattner |
2009-03-28 | Change compound assignment operators to keep track of both the promoted | Eli Friedman |
2009-03-19 | Generalize printing of nested-name-specifier sequences for use in both | Douglas Gregor |
2009-03-13 | Implement template instantiation for several more kinds of expressions: | Douglas Gregor |
2009-03-04 | Change Parser::ParseCaseStatement to use an iterative approach to parsing | Chris Lattner |
2009-02-19 | Add enough checking to ensure that non-constant block literals don't | Mike Stump |
2009-02-18 | rip out __builtin_overload | Chris Lattner |
2009-02-18 | privatize all of the string literal memory allocation/creation | Chris Lattner |
2009-02-18 | change the StringLiteral AST node to track all of the SourceLocations of | Chris Lattner |
2009-02-13 | Remove DeclGroupOwningRef, since we intend for declarations to be owned | Douglas Gregor |
2009-02-09 | CallExpr now uses ASTContext's allocate to allocate/delete its array of subex... | Ted Kremenek |
2009-02-09 | Allocate the subexpression array for OberloadExpr from ASTContext's allocator. | Ted Kremenek |
2009-02-07 | Overhaul of Stmt allocation: | Ted Kremenek |
2009-02-06 | Move StringLiteral to allocate its internal string data using the allocator in | Ted Kremenek |
2009-02-04 | Fix our semantic analysis of | Douglas Gregor |
2009-01-20 | Remove ScopedDecl, collapsing all of its functionality into Decl, so | 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-24 | Fix try statement deserialization. | 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-20 | Add support for member references (E1.E2, E1->E2) with C++ semantics, | Douglas Gregor |
2008-12-18 | Removed a slot in ObjCMemRegExpr used in | Fariborz Jahanian |
2008-12-16 | Warning fixes to operator precedence warnings. | Eli Friedman |
2008-12-13 | Patch for ObjCIvarRefExpr containing the field | Fariborz Jahanian |
2008-12-06 | Add support for calls to dependent names within templates, e.g., | Douglas Gregor |
2008-12-04 | Several things... | Steve Naroff |
2008-12-03 | Fix some type punning errors in SizeOfAlignOf and Typeid AST nodes. This shou... | Sebastian Redl |
2008-12-02 | Handle new by passing the Declaration to the Action, not a processed type. | Sebastian Redl |
2008-12-01 | Use EmitInt, not Emit, to emit unsigned values | Douglas Gregor |
2008-11-29 | Implement the GNU __null extension | Douglas Gregor |
2008-11-22 | Support for implicit property assignment. Error assigning to | Fariborz Jahanian |
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-12 | Implement support for operator overloading using candidate operator | 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-11-03 | Fix <rdar://problem/6339636> clang ObjC rewriter: Assertion failed: FileID-1 ... | Steve Naroff |
2008-10-28 | Rename ExplicitCCastExpr to CStyleCastExpr | Douglas Gregor |
2008-10-27 | Refactor the expression class hierarchy for casts. Most importantly: | Douglas Gregor |
2008-10-21 | Preliminary support for function overloading | Douglas Gregor |
2008-10-15 | Use BatchEmitOwnedPtrs for writing multiple child exprs, per review. | Daniel Dunbar |
2008-10-14 | Add serialization support in several missing places. | Daniel Dunbar |
2008-10-08 | - Add BlockDecl AST node. | Steve Naroff |
2008-10-07 | Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDe... | Ted Kremenek |