Files
SAPFOR/Sapfor/_src/SageAnalysisTool/inducVar.h
2025-03-12 12:37:19 +03:00

19 lines
365 B
C

#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;