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