aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/StmtPrinter.cpp
AgeCommit message (Expand)Author
2009-07-24Allow front-end 'isa' access on object's of type 'id'.Steve Naroff
2009-07-14In Stmt::printPretty(), pass the SourceManager to dump().Argyrios Kyrtzidis
2009-06-30Preliminary parsing and ASTs for template-ids that refer to functionDouglas Gregor
2009-06-30Remove the ASTContext parameter from the printing related methods of Decl.Argyrios Kyrtzidis
2009-06-30Key decisions about 'bool' vs '_Bool' to be based on a new flag in langoptions.Chris Lattner
2009-06-14PR4391: Tweak -ast-print output to generate valid output for edge cases Eli Friedman
2009-05-30Add a CXXBindTemporaryExpr.Anders Carlsson
2009-05-30Pass an ASTContext into Stmt::printPretty.Eli Friedman
2009-05-30Add a Stmt::printPretty overload which takes an ASTContext; start Eli Friedman
2009-05-30Expose an API to print a group of decls (like "int a,b;"). Eli Friedman
2009-05-30Fix some test failures involving -ast-print.Eli Friedman
2009-05-30Clean up printing for Objective-C, designated initializers.Douglas Gregor
2009-05-30Some enhancements to DeclStmt printing. Some of this should Eli Friedman
2009-05-30Refactor and clean up the AST printer, so that it uses a DeclVisitor,Douglas Gregor
2009-05-29Create a new PrintingPolicy class, which we pass down through the ASTDouglas Gregor
2009-05-22Representation of and template instantiation for memberDouglas Gregor
2009-05-20Introduce a new expression type, CXXUnresolvedConstructExpr, toDouglas Gregor
2009-05-17A couple of tweaks to make -ast-print produce code that's closer to Eli Friedman
2009-05-10Implement C++0x nullptr.Sebastian Redl
2009-05-01Get rid of CXXDestroyExpr.Anders Carlsson
2009-05-01Rename CXXExprWithCleanup to CXXExprWithTemporaries.Anders Carlsson
2009-04-24Add CXXExprWithCleanupAnders Carlsson
2009-04-23Add a CXXConstructExpr that represents an implicit call to a C++ constructor....Anders Carlsson
2009-04-21Add a CXXDestroyExpr. Add classof member functions to CXXTempVarDecl.Anders Carlsson
2009-04-14Audit __private_extern__ handling.Daniel Dunbar
2009-04-09Propagate the ASTContext to various AST traversal and lookup functions.Douglas Gregor
2009-03-31Some cleanup and renaming. No functionality changeDouglas Gregor
2009-03-26Revamp our representation of C++ nested-name-specifiers. We now have aDouglas Gregor
2009-03-19Introduce a new expression type, UnresolvedDeclRefExpr, that describesDouglas Gregor
2009-03-19Generalize printing of nested-name-specifier sequences for use in bothDouglas Gregor
2009-03-10Remove some now-unneeded calls to llvm::errs().flush().Daniel Dunbar
2009-03-10add some helper methods to AsmStmt and add some comments.Chris Lattner
2009-03-03Fix <rdar://problem/6640991> Exception handling executes wrong clause (Daniel...Steve Naroff
2009-02-27Change the AST generated for offsetof a bit so that it looks like a Eli Friedman
2009-02-26Create a new TypeNodes.def file that enumerates all of the types,Douglas Gregor
2009-02-18rip out __builtin_overloadChris Lattner
2009-02-10Add private extern to pretty printer(s).Mike Stump
2009-02-10Fixup -ast-print so that:Mike Stump
2009-02-07Fix pretty-printing of if conditions. Patch by Ben Lickly.Sebastian Redl
2009-02-04Fix our semantic analysis ofDouglas Gregor
2009-01-29Introduce a new expression node, ImplicitValueInitExpr, thatDouglas Gregor
2009-01-28Code generation support for C99 designated initializers.Douglas Gregor
2009-01-22Initial implementation of semantic analysis and ASTs for C99Douglas Gregor
2009-01-20Remove ScopedDecl, collapsing all of its functionality into Decl, soDouglas Gregor
2009-01-16make ast-print handle random non-printable characters correctly with octal es...Chris Lattner
2009-01-16Part one of handling C++ functional casts. This handles semanticDouglas Gregor
2009-01-08Revert my previous, failed attempt to pretty-print anonymous struct/union acc...Douglas Gregor
2009-01-07Fix printing of member references to avoid displaying implicitly-generated me...Douglas Gregor
2009-01-06Add QualifiedDeclRefExpr, which retains additional source-locationDouglas Gregor
2009-01-05PODness and Type TraitsSebastian Redl