]> granicus.if.org Git - clang/commitdiff
Add missing file.
authorTed Kremenek <kremenek@apple.com>
Wed, 16 Apr 2008 18:39:25 +0000 (18:39 +0000)
committerTed Kremenek <kremenek@apple.com>
Wed, 16 Apr 2008 18:39:25 +0000 (18:39 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49805 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/GRTransferFuncs.cpp [new file with mode: 0644]

diff --git a/lib/Analysis/GRTransferFuncs.cpp b/lib/Analysis/GRTransferFuncs.cpp
new file mode 100644 (file)
index 0000000..d11d18d
--- /dev/null
@@ -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) {}