mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-21 06:30:16 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291 91177308-0d34-0410-b5e6-96231b3b80d8
27 lines
439 B
C++
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
|
|
|
|
|