aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/ASTConsumers.cpp
AgeCommit message (Expand)Author
2009-10-25Audit the code for places where it is assumed that every base specifier refer...Sebastian Redl
2009-10-23Remove OriginalTypeParmDecl; the original type is the one specifiedJohn McCall
2009-09-26Don't try to dump invalid decls or forward decls.Anders Carlsson
2009-09-25Who would have thought that empty classes were so tricky? Handle cases where ...Anders Carlsson
2009-09-24Improve the record layout dumper.Anders Carlsson
2009-09-24Add a -dump-record-layouts argument to clang-cc.Anders Carlsson
2009-09-12Eliminate FunctionDecl::getBodyIfAvailableDouglas Gregor
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-08-24Fix build of clang with gcc-4.4: #include <cstdio> was missing.Torok Edwin
2009-08-23Replace cerr with errs().Benjamin Kramer
2009-06-30remove dead code.Zhongxing Xu
2009-06-30De-ASTContext-ify DeclContext.Argyrios Kyrtzidis
2009-06-30Remove the ASTContext parameter from the printing related methods of Decl.Argyrios Kyrtzidis
2009-06-17Move CXXMethodDecl::OutOfLineDefinition into Decl::OutOfLine.Argyrios Kyrtzidis
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-21AST XML dump, from Olaf Krzikalla!Douglas Gregor
2009-05-18Move ASTConsumers.h to include/clang/Frontend, and move the associated Eli Friedman