aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Analysis/PathSensitive/Checkers/BadCallChecker.h
blob: 70f3c44165e029253f13762c44967f684d0871f1 (plain) (blame)
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
30
//===--- BadCallChecker.h - Bad call checker --------------------*- C++ -*--==//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This defines BadCallChecker, a builtin check in GRExprEngine that performs
// checks for bad callee at call sites.
//
//===----------------------------------------------------------------------===//

#include "clang/Analysis/PathSensitive/CheckerVisitor.h"

namespace clang {

class BadCallChecker : public CheckerVisitor<BadCallChecker> {
  BuiltinBug *BT;

public:
  BadCallChecker() : BT(0) {}

  static void *getTag();

  void PreVisitCallExpr(CheckerContext &C, const CallExpr *CE);
};

}