summaryrefslogtreecommitdiffstats
path: root/include/clang/Analysis/PathSensitive/CheckerVisitor.def
blob: 090a5d397549d190ce625938b173664205a30d29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//===-- CheckerVisitor.def - Metadata for CheckerVisitor ----------------*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//  This file defines the AST nodes accepted by the CheckerVisitor class.
//
//===---------------------------------------------------------------------===//

#ifdef PREVISIT
PREVISIT(ArraySubscriptExpr)
PREVISIT(BinaryOperator)
PREVISIT(CallExpr)
PREVISIT(CastExpr)
PREVISIT(DeclStmt)
PREVISIT(ObjCMessageExpr)
PREVISIT(ReturnStmt)
#undef PREVISIT
#endif

#ifdef POSTVISIT
POSTVISIT(CallExpr)
#undef POSTVISIT
#endif

OpenPOWER on IntegriCloud