Add cast expr kinds to CheckerVisitor.def.

llvm-svn: 123312
This commit is contained in:
Zhongxing Xu 2011-01-12 06:24:01 +00:00
parent d964580fea
commit 9addee2b29
1 changed files with 3 additions and 0 deletions

View File

@ -24,9 +24,12 @@ PREVISIT(BinaryOperator, Stmt)
PREVISIT(CallExpr, GenericCall)
PREVISIT(CompoundAssignOperator, BinaryOperator)
PREVISIT(CStyleCastExpr, CastExpr)
PREVISIT(CXXConstCastExpr, CastExpr)
PREVISIT(CXXDynamicCastExpr, CastExpr)
PREVISIT(CXXFunctionalCastExpr, CastExpr)
PREVISIT(CXXOperatorCallExpr, GenericCall)
PREVISIT(CXXMemberCallExpr, GenericCall)
PREVISIT(CXXReinterpretCastExpr, CastExpr)
PREVISIT(CXXStaticCastExpr, CastExpr)
PREVISIT(DeclStmt, Stmt)
PREVISIT(ImplicitCastExpr, CastExpr)