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
/
StmtIterator.h
Age
Commit message (
Expand
)
Author
2012-03-26
Simplify code, no functionality change.
Benjamin Kramer
2011-04-26
include/clang/AST/StmtIterator.h: std::pair should be provided by <utility>. ...
NAKAMURA Takumi
2011-02-13
Give some convenient idiomatic accessors to Stmt::child_range and
John McCall
2011-02-09
Remove vtables from the Stmt hierarchy; this was pretty easy as
John McCall
2011-01-19
Change QualType::getTypePtr() to return a const pointer, then change a
John McCall
2010-11-29
Merge System into Support.
Michael J. Spencer
2010-06-15
Add <cstddef> include to get ptrdiff_t, for gcc-4.6; patch by Dimitry Andric.
Daniel Dunbar
2009-12-23
Add StmtIterator support for iterating over both the condition
Ted Kremenek
2009-12-23
Increase StmtIterator size by one pointer (separating out the Stmt** from the...
Ted Kremenek
2009-10-26
Update location of DataTypes.h to reflect move in LLVM with r85086.
Chandler Carruth
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-08-27
iterator.h is no more. Be standards compliant.
Gabor Greif
2009-03-05
Use LLVM type header rather than using stdint.h directly.
Eli Friedman
2009-03-02
improve compatibility with GCC 4.4, patch by Michel Salim (PR3697)
Chris Lattner
2009-01-20
Remove ScopedDecl, collapsing all of its functionality into Decl, so
Douglas Gregor
2008-10-07
Add StmtIterator support for DeclGroups.
Ted Kremenek
2008-05-29
Update to follow recent LLVM changes
Anton Korobeynikov
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-12-15
Removed "isSizeOfExpr" mode from StmtIterator. It turned out not to be
Ted Kremenek
2007-12-14
Added "mode" to StmtIterator to record if the expression being iterated
Ted Kremenek
2007-12-14
Added support to StmtIterator to traverse the size expression of a VLA type
Ted Kremenek
2007-10-29
Added a missing #include.
Hartmut Kaiser
2007-10-29
Modified StmtIterator to support iteration over the size expressions
Ted Kremenek
2007-10-29
Renamed internal variables of StmtIteratorBase to make the code
Ted Kremenek
2007-10-25
Modified StmtIterator to now include visiting the initialization expression f...
Ted Kremenek
2007-10-24
Modified operator* for StmtIterator to return Stmt*& instead of Stmt*.
Ted Kremenek
2007-10-18
Fixed DeclStmt::child_begin() to actually create an iterator that
Ted Kremenek
2007-10-18
Refactored StmtIterator into classes StmtIteratorBase (non-templated)
Ted Kremenek
2007-10-18
Implemented 90% functionality of new child_iterator for Stmt objects
Ted Kremenek