Files
SAPFOR/Sapfor/_src/SageAnalysisTool/inducVar.h

19 lines
365 B
C
Raw Normal View History

2023-09-14 19:43:13 +03:00
#pragma once
struct inducvar
{
int constante; // indicate if constante or induction
SgStatement *stmt;
SgExpression *var; // this is a var ref;
SgExpression *stride;
SgExpression *lbound;
SgExpression *ubound;
Set *reachdef;
int level;
int loopnum;
int include;
};
typedef struct inducvar *PT_INDUCVAR;