xref: /llvm-project/polly/lib/External/isl/set_from_map.c (revision 06e1592663fe9dc9da5e754b54bd74d1823f766c)
1 #include <isl/map_type.h>
2 
3 /* Return the set that was treated as the map "map".
4  */
set_from_map(__isl_take isl_map * map)5 static __isl_give isl_set *set_from_map(__isl_take isl_map *map)
6 {
7 	return (isl_set *) map;
8 }
9