Ruchira Sasanka 683847fb75 *** empty log message ***
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291 91177308-0d34-0410-b5e6-96231b3b80d8
2001-07-24 17:14:13 +00:00

27 lines
439 B
C++

/* Title: ValueSet.h
Author: Ruchira Sasanka
Date: Jun 30, 01
Purpose: Contains the class definition of LiveVarSet which is used for
live variable analysis.
*/
#ifndef LIVE_VAR_SET_H
#define LIVE_VAR_SET_H
#include "ValueSet.h"
#include "llvm/Instruction.h"
#include "llvm/Type.h"
class LiveVarSet : public ValueSet
{
public:
void applyTranferFuncForInst(const Instruction *const Inst);
};
#endif