Age | Commit message (Expand) | Author |
2009-10-23 | Eliminate QualifiedDeclRefExpr, which captured the notion of a | Douglas Gregor |
2009-10-16 | While writing source-location entries to a PCH file, go through an | Douglas Gregor |
2009-09-21 | Change all the Type::getAsFoo() methods to specializations of Type::getAs(). | John McCall |
2009-09-09 | Remove tabs, and whitespace cleanups. | Mike Stump |
2009-09-09 | Initial stab at implement dependent member references to member | Douglas Gregor |
2009-09-04 | Implement AST, semantics, and CodeGen for C++ pseudo-destructor | Douglas Gregor |
2009-09-03 | Improved handling for dependent, qualified member access expressions, e.g., | Douglas Gregor |
2009-09-01 | Preliminary AST representation and semantic analysis for | 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-23 | Replace cerr with errs(). | Benjamin Kramer |
2009-08-20 | Using "ObjCImplicitSetterGetterRefExpr" instead of "ObjCImplctSetterGetterRef... | Fariborz Jahanian |
2009-08-18 | Renamed ObjCKVCRefExpr to ObjCImplctSetterGetterRefExpr. | Fariborz Jahanian |
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-07-14 | In Stmt::printPretty(), pass the SourceManager to dump(). | Argyrios Kyrtzidis |
2009-06-30 | Preliminary parsing and ASTs for template-ids that refer to function | Douglas Gregor |
2009-06-30 | Remove the ASTContext parameter from the printing related methods of Decl. | Argyrios Kyrtzidis |
2009-06-30 | Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions. | Chris Lattner |
2009-06-14 | PR4391: Tweak -ast-print output to generate valid output for edge cases | Eli Friedman |
2009-05-30 | Add a CXXBindTemporaryExpr. | Anders Carlsson |
2009-05-30 | Pass an ASTContext into Stmt::printPretty. | Eli Friedman |
2009-05-30 | Add a Stmt::printPretty overload which takes an ASTContext; start | Eli Friedman |
2009-05-30 | Expose an API to print a group of decls (like "int a,b;"). | Eli Friedman |
2009-05-30 | Fix some test failures involving -ast-print. | Eli Friedman |
2009-05-30 | Clean up printing for Objective-C, designated initializers. | Douglas Gregor |
2009-05-30 | Some enhancements to DeclStmt printing. Some of this should | Eli Friedman |
2009-05-30 | Refactor and clean up the AST printer, so that it uses a DeclVisitor, | Douglas Gregor |
2009-05-29 | Create a new PrintingPolicy class, which we pass down through the AST | Douglas Gregor |
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-17 | A couple of tweaks to make -ast-print produce code that's closer to | Eli Friedman |
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-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-04-14 | Audit __private_extern__ handling. | Daniel Dunbar |
2009-04-09 | Propagate the ASTContext to various AST traversal and lookup functions. | Douglas Gregor |
2009-03-31 | Some cleanup and renaming. No functionality change | Douglas Gregor |
2009-03-26 | Revamp our representation of C++ nested-name-specifiers. We now have a | Douglas Gregor |
2009-03-19 | Introduce a new expression type, UnresolvedDeclRefExpr, that describes | Douglas Gregor |
2009-03-19 | Generalize printing of nested-name-specifier sequences for use in both | Douglas Gregor |
2009-03-10 | Remove some now-unneeded calls to llvm::errs().flush(). | Daniel Dunbar |
2009-03-10 | add some helper methods to AsmStmt and add some comments. | Chris Lattner |
2009-03-03 | Fix <rdar://problem/6640991> Exception handling executes wrong clause (Daniel... | Steve Naroff |