interface: update to move of llvm/Support/Host.h to llvm/TargetParser/Host.h
[isl.git] / isl_project_out_all_params_templ.c
blob73f9a8fa4d8fb42c464e77f9677ce66211eafa5e
1 /*
2 * Use of this software is governed by the MIT license
4 * Written by Sven Verdoolaege
5 */
7 #define xFN(TYPE,NAME) TYPE ## _ ## NAME
8 #define FN(TYPE,NAME) xFN(TYPE,NAME)
10 /* Project out all parameters from "obj" by existentially quantifying
11 * over them.
13 __isl_give TYPE *FN(TYPE,project_out_all_params)(__isl_take TYPE *obj)
15 isl_size n;
17 n = FN(TYPE,dim)(obj, isl_dim_param);
18 if (n < 0)
19 return FN(TYPE,free)(obj);
20 return FN(TYPE,project_out)(obj, isl_dim_param, 0, n);