diff --git a/clang/lib/Analysis/GRTransferFuncs.cpp b/clang/lib/Analysis/GRTransferFuncs.cpp new file mode 100644 index 000000000000..d11d18d5cb88 --- /dev/null +++ b/clang/lib/Analysis/GRTransferFuncs.cpp @@ -0,0 +1,19 @@ +//== GRTransferFuncs.cpp - Path-Sens. Transfer Functions Interface -*- C++ -*--= +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file defines GRTransferFuncs, which provides a base-class that +// defines an interface for transfer functions used by GRExprEngine. +// +//===----------------------------------------------------------------------===// + +#include "clang/Analysis/PathSensitive/GRTransferFuncs.h" + +using namespace clang; + +void GRTransferFuncs::RegisterChecks(GRExprEngine& Eng) {}