index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Parse
/
ParseAST.cpp
Age
Commit message (
Expand
)
Author
2013-03-25
Try harder to be signal-safe inside our signal handler. The most prominent be...
Nick Lewycky
2012-12-21
Fix indent.
Chad Rosier
2012-12-04
Sort all of Clang's files under 'lib', and fix up the broken headers
Chandler Carruth
2012-11-27
Move PrettyStackTraceParserEntry to ParseAST.cpp
Nico Weber
2012-11-05
Have the parser initialize Sema before it consumes the first
Douglas Gregor
2012-07-04
Drop the ASTContext.h include from Stmt.h and fix up transitive users.
Benjamin Kramer
2012-06-19
Revert predefined decl tracking.
Meador Inge
2012-06-06
Add pedantic warning -Wempty-translation-unit (C11 6.9p1).
Jordan Rose
2012-04-12
Added a flag to the parser to skip method bodies.
Erik Verbruggen
2012-03-05
AST/stats: Don't effectively use an out-of-line function to return a static
Daniel Dunbar
2012-02-07
Make parsing of objc @implementations more robust.
Argyrios Kyrtzidis
2012-02-05
Basic: import OwningPtr<> into clang namespace
Dylan Noblesmith
2011-11-18
Change ASTConsumer::HandleTopLevelDecl to return true for the parser to continue
Argyrios Kyrtzidis
2011-08-25
Introduce a -cc1 option "-emit-module", that creates a binary module
Douglas Gregor
2011-07-23
remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....
Chris Lattner
2011-07-06
Build up statistics about the work done for analysis based warnings.
Chandler Carruth
2011-07-04
Start switching the AST stats printing to use llvm::errs() instead of
Chandler Carruth
2011-03-22
Migrate 'PrettySTackTraceParserEntry' object out of Parser, and have it const...
Ted Kremenek
2011-03-18
Construct 'Sema' object on the stack, so that crash recovery can recovery it'...
Ted Kremenek
2011-03-18
Use CrashRecoveryContextCleanup objects to release resources associated with ...
Ted Kremenek
2011-02-17
The internal -fdump-record-layouts flag already dumps the layout when it was ...
Douglas Gregor
2010-08-25
Remove Sema.h's dependency on DeclCXX.h.
John McCall
2010-08-23
Push DeclGroupRefs and TemplateNames in an opaque but type-safe way
John McCall
2010-08-20
Another step in the process of making the parser depend on Sema:
John McCall