blob: d11d18d5cb885bbbf0e792dae3ef911fad9062ac [file] [log] [blame]
Ted Kremenek2798e172008-04-16 18:39:25 +00001//== GRTransferFuncs.cpp - Path-Sens. Transfer Functions Interface -*- C++ -*--=
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines GRTransferFuncs, which provides a base-class that
11// defines an interface for transfer functions used by GRExprEngine.
12//
13//===----------------------------------------------------------------------===//
14
15#include "clang/Analysis/PathSensitive/GRTransferFuncs.h"
16
17using namespace clang;
18
19void GRTransferFuncs::RegisterChecks(GRExprEngine& Eng) {}