File: opt_type.h

package info (click to toggle)
isl 0.27-1
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 20,476 kB
  • sloc: ansic: 230,339; python: 19,348; cpp: 7,165; sh: 4,701; makefile: 767; lisp: 207; perl: 9
file content (16 lines) | stat: -rw-r--r-- 513 bytes parent folder | download | duplicates (27)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define NO_LOC
#ifdef HAS_TYPE
#define OPT_TYPE_PARAM			, enum isl_fold type
#define OPT_TYPE_PARAM_FIRST		enum isl_fold type,
#define OPT_TYPE_ARG(loc)		, loc type
#define OPT_TYPE_ARG_FIRST(loc)		loc type,
#define OPT_SET_TYPE(loc,val)		loc type = (val);
#define OPT_EQUAL_TYPES(loc1, loc2)	((loc1 type) == (loc2 type))
#else
#define OPT_TYPE_PARAM
#define OPT_TYPE_PARAM_FIRST
#define OPT_TYPE_ARG(loc)
#define OPT_TYPE_ARG_FIRST(loc)
#define OPT_SET_TYPE(loc,val)
#define OPT_EQUAL_TYPES(loc1, loc2)	1
#endif