[cfe-commits] r123312 - /cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def
Zhongxing Xu
xuzhongxing at gmail.com
Tue Jan 11 22:24:01 PST 2011
Author: zhongxingxu
Date: Wed Jan 12 00:24:01 2011
New Revision: 123312
URL: http://llvm.org/viewvc/llvm-project?rev=123312&view=rev
Log:
Add cast expr kinds to CheckerVisitor.def.
Modified:
cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def
Modified: cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def?rev=123312&r1=123311&r2=123312&view=diff
==============================================================================
--- cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def (original)
+++ cfe/trunk/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def Wed Jan 12 00:24:01 2011
@@ -24,9 +24,12 @@
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)
More information about the cfe-commits
mailing list