index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
/
clang
/
AST
/
StmtCXX.h
Age
Commit message (
Expand
)
Author
2013-01-12
Remove useless 'llvm::' qualifier from names like StringRef and others that are
Dmitri Gribenko
2013-01-12
Add missing includes and forward declarations so that headers don't depend on
Dmitri Gribenko
2012-12-29
ArrayRefize CXXTryStmt.
Nico Weber
2012-12-25
Fix for PR12222.
Erik Verbruggen
2012-10-11
Remove pointless classof()'s.
Sean Silva
2012-03-09
[AST/etc] Mark {getSourceRange(),getStartLoc(),getEndLoc()} as LLVM_READONLY.
Daniel Dunbar
2011-11-09
Fixing 80 col violations (& removing any trailing whitespace on files I was t...
David Blaikie
2011-10-25
Implement support for dependent Microsoft __if_exists/__if_not_exists
Douglas Gregor
2011-04-14
Add support for C++0x's range-based for loops, as specified by the C++11 draf...
Richard Smith
2011-02-09
Remove vtables from the Stmt hierarchy; this was pretty easy as
John McCall
2010-08-18
Rename PCHStmtReader -> ASTStmtReader.
Sebastian Redl
2010-07-25
Remove the vast majority of the Destroy methods from the AST library,
Douglas Gregor
2010-07-22
Support C++ try/catch statements for PCH.
Argyrios Kyrtzidis
2010-03-31
Remove the AST statistics tracking I added yesterday; it didn't pan out.
Douglas Gregor
2010-03-30
Introduce new AST statistics that keep track of the number of isa (or
Douglas Gregor
2010-02-03
Implement Doug's suggestion. Eliminate the Stmts pointer from CXXTryStmt and ...
Sam Weinig
2010-02-03
Remove the SmallVector from CXXTryStmt.
Sam Weinig
2009-12-04
Add an easy accessor for the end of the try/catch statement.
Mike Stump
2009-11-30
Add const to accessors that don't modify the object.
Mike Stump
2009-11-20
Checkpoint current work. WIP.
Mike Stump
2009-08-07
Separate Stmt::Destroy into the entrypoint for destroying a statement
Douglas Gregor
2009-05-18
Template instantiation for C++ try/catch statements.
Douglas Gregor
2009-04-26
Split C++ statements out to their own file.
Chris Lattner