diff options
author | Ted Kremenek <kremenek@apple.com> | 2008-04-16 18:39:25 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2008-04-16 18:39:25 +0000 |
commit | 2798e1765457b77fcdc3878101d375ace09dd949 (patch) | |
tree | f36a0762fdcfcf9232965dce11afe789ceccfd7f /lib/Analysis/GRTransferFuncs.cpp | |
parent | ec96a2d52d16e150baaf629cd35e3fabff5d8915 (diff) |
Add missing file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49805 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/GRTransferFuncs.cpp')
-rw-r--r-- | lib/Analysis/GRTransferFuncs.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Analysis/GRTransferFuncs.cpp b/lib/Analysis/GRTransferFuncs.cpp new file mode 100644 index 0000000000..d11d18d5cb --- /dev/null +++ b/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) {} |