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
/
StmtVisitor.h
Age
Commit message (
Expand
)
Author
2012-01-17
Remove unnecessary default cases in switches over enums.
David Blaikie
2011-09-23
Switch assert(0/false) llvm_unreachable.
David Blaikie
2011-05-13
Add a ConstStmtVisitor class
Peter Collingbourne
2010-08-25
GCC didn't care for my attempt at API compatibility, so brute-force everything
John McCall
2010-08-13
Zap unused UnaryOperator::OffsetOf.
Eli Friedman
2010-05-18
Switch over the tablegen to use much prettier range technology
Sean Hunt
2010-05-05
Reapplying patch to change StmtNodes.def to StmtNodes.td, this time
Sean Hunt
2010-05-05
Revert r103072; I accidentally ended up deleting a bunch of trailing
Sean Hunt
2010-05-05
Change StmtNodes.def to StmtNodes.td in anticipation of a rewrite of attributes
Sean Hunt
2010-02-03
Remove abstract expression kinds from the StmtClass enum. Update a few users
John McCall
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-04-26
split ObjC and C++ Statements out into their own headers.
Chris Lattner
2009-02-07
Implement dereferencing of pointers-to-member.
Sebastian Redl
2008-11-14
Don't require us to manually number the statements and expressions in StmtNod...
Douglas Gregor
2008-11-11
Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expr...
Sebastian Redl
2008-05-29
- Move ObjC Expresssion AST's from Expr.h => ExprObjC.h
Steve Naroff
2007-12-29
Don't attribute in file headers anymore. See llvmdev for the
Chris Lattner
2007-08-30
implement pretty printing of offsetof
Chris Lattner
2007-08-30
implement initial sema support for __builtin_offsetof
Chris Lattner
2007-08-26
If a visitor doesn't define VisitBinMulAssign, fallback to VisitCompoundAssig...
Chris Lattner
2007-08-26
dispatch to functions like VisitBinRemAssign with knowledge that
Chris Lattner
2007-08-21
add unary operator support to the stmtvisitor
Chris Lattner
2007-08-21
Add the comparisons and logical binops to the visitor.
Chris Lattner
2007-08-21
Add the ability to visit binary operators without having to
Chris Lattner
2007-08-21
Now that the visitor is defined in one place, it is nice and easy to allow cl...
Chris Lattner
2007-08-21
Switch StmtVisitor from using dynamic to static dispatch. This makes it
Chris Lattner
2007-07-11
Stage two of getting CFE top correct.
Reid Spencer