Add missing file.

llvm-svn: 49805
This commit is contained in:
Ted Kremenek 2008-04-16 18:39:25 +00:00
parent 90c7cb6810
commit 673b5c1e42
1 changed files with 19 additions and 0 deletions

View File

@ -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) {}