From 5aff5e3d1f0417d75b508619438f976ed5747c3c Mon Sep 17 00:00:00 2001 From: Zhongxing Xu Date: Wed, 12 Jan 2011 06:24:01 +0000 Subject: [PATCH] Add cast expr kinds to CheckerVisitor.def. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@123312 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def b/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def index d3912e6010..840aaa76fd 100644 --- a/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def +++ b/include/clang/StaticAnalyzer/PathSensitive/CheckerVisitor.def @@ -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) -- 2.50.1