summaryrefslogtreecommitdiff
path: root/lib/Parse/ParseAST.cpp
Commit message (Expand)AuthorAge
* [C++11] Add 'override' keyword to virtual methods that override their base cl...Craig Topper2014-03-12
* [C++11] Replace OwningPtr include with <memory>.Ahmed Charles2014-03-09
* Replace OwningPtr with std::unique_ptr.Ahmed Charles2014-03-07
* Use SmallVectorImpl instead of SmallVector for iterators and references to av...Craig Topper2013-07-04
* Try harder to be signal-safe inside our signal handler. The most prominent be...Nick Lewycky2013-03-25
* Fix indent.Chad Rosier2012-12-21
* Sort all of Clang's files under 'lib', and fix up the broken headersChandler Carruth2012-12-04
* Move PrettyStackTraceParserEntry to ParseAST.cppNico Weber2012-11-27
* Have the parser initialize Sema before it consumes the firstDouglas Gregor2012-11-05
* Drop the ASTContext.h include from Stmt.h and fix up transitive users.Benjamin Kramer2012-07-04
* Revert predefined decl tracking.Meador Inge2012-06-19
* Add pedantic warning -Wempty-translation-unit (C11 6.9p1).Jordan Rose2012-06-06
* Added a flag to the parser to skip method bodies.Erik Verbruggen2012-04-12
* AST/stats: Don't effectively use an out-of-line function to return a staticDaniel Dunbar2012-03-05
* Make parsing of objc @implementations more robust.Argyrios Kyrtzidis2012-02-07
* Basic: import OwningPtr<> into clang namespaceDylan Noblesmith2012-02-05
* Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continueArgyrios Kyrtzidis2011-11-18
* Introduce a -cc1 option "-emit-module", that creates a binary moduleDouglas Gregor2011-08-25
* remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner2011-07-23
* Build up statistics about the work done for analysis based warnings.Chandler Carruth2011-07-06
* Start switching the AST stats printing to use llvm::errs() instead ofChandler Carruth2011-07-04
* Migrate 'PrettySTackTraceParserEntry' object out of Parser, and have it const...Ted Kremenek2011-03-22
* Construct 'Sema' object on the stack, so that crash recovery can recovery it'...Ted Kremenek2011-03-18
* Use CrashRecoveryContextCleanup objects to release resources associated with ...Ted Kremenek2011-03-18
* The internal -fdump-record-layouts flag already dumps the layout when it was ...Douglas Gregor2011-02-17
* Remove Sema.h's dependency on DeclCXX.h.John McCall2010-08-25
* Push DeclGroupRefs and TemplateNames in an opaque but type-safe wayJohn McCall2010-08-23
* Another step in the process of making the parser depend on Sema:John McCall2010-08-20