brintos

brintos / llvm-project-archived public Read only

0
0
Text · 178 B · cf6f814 Raw
9 lines · c
1#include <isl/map_type.h>2 3/* Return the set that was treated as the map "map".4 */5static __isl_give isl_set *set_from_map(__isl_take isl_map *map)6{7	return (isl_set *) map;8}9