finalyze moving

This commit is contained in:
2025-03-12 14:28:04 +03:00
parent f840006398
commit 033bbce220
774 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#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;