1 #define xFN(TYPE,NAME) TYPE ## _ ## NAME
2 #define FN(TYPE,NAME) xFN(TYPE,NAME)
3 
4 /* Check that "obj" has only named parameters, reporting an error
5  * if it does not.
6  */
FN(TYPE,check_named_params)7 isl_stat FN(TYPE,check_named_params)(__isl_keep TYPE *obj)
8 {
9 	return isl_space_check_named_params(FN(TYPE,peek_space)(obj));
10 }
11