#include "clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h"
#include "clang/StaticAnalyzer/Core/BugReporter/BugType.h"
#include "clang/StaticAnalyzer/Core/Checker.h"
#include "clang/StaticAnalyzer/Core/CheckerManager.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h"
#include "clang/StaticAnalyzer/Core/PathSensitive/DynamicExtent.h"
#include "llvm/ADT/StringRef.h"
#include "llvm/Support/FormatVariadic.h"
usingnamespaceclang;
usingnamespaceento;
namespace {
class PointerSubChecker
: public Checker< check::PreStmt<BinaryOperator> > { … };
}
void PointerSubChecker::checkPreStmt(const BinaryOperator *B,
CheckerContext &C) const { … }
void ento::registerPointerSubChecker(CheckerManager &mgr) { … }
bool ento::shouldRegisterPointerSubChecker(const CheckerManager &mgr) { … }