fixed paths
This commit is contained in:
19
Sapfor/src/SageAnalysisTool/OmegaForSage/include/range.h
Normal file
19
Sapfor/src/SageAnalysisTool/OmegaForSage/include/range.h
Normal file
@@ -0,0 +1,19 @@
|
||||
/* range.h,v 1.1.1.1 1992/07/10 02:41:06 davew Exp */
|
||||
|
||||
#ifndef Already_Included_Range
|
||||
#define Already_Included_Range
|
||||
|
||||
typedef struct {
|
||||
uint _first;
|
||||
uint _length;
|
||||
} range;
|
||||
|
||||
#define r_first(r) ((r)->_first)
|
||||
#define r_last(r) ((r)->_first + (r)->_length - 1)
|
||||
#define r_length(r) ((r)->_length)
|
||||
#define r_in(r, i) ((i) >= r_first(r) && (i) <= r_last(r))
|
||||
/* #define r_grow(r) (++(r)->_length)
|
||||
grow is no longer allowed, as variables after the last region are
|
||||
used for iteration number counts */
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user