brintos

brintos / llvm-project-archived public Read only

0
0
Text · 219 B · cad6060 Raw
9 lines · c
1#include <isl/union_map_type.h>2 3/* Return the union set that was treated as the union map "umap".4 */5static __isl_give isl_union_set *uset_from_umap(__isl_take isl_union_map *umap)6{7	return (isl_union_set *) umap;8}9