Files
clang-p2996/polly/lib/External/isl/set_to_map.c
Tobias Grosser 06e1592663 Update to isl-0.17.1-267-gbf9723d
This update corrects an incorrect generation of min/max expressions in the isl
AST generator and a problematic nullptr dereference.

llvm-svn: 287098
2016-11-16 11:06:47 +00:00

11 lines
254 B
C

#include <isl/map_type.h>
/* Treat "set" as a map.
* Internally, isl_set is defined to isl_map, so in practice,
* this function performs a redundant cast.
*/
static __isl_give isl_map *set_to_map(__isl_take isl_set *set)
{
return (isl_map *) set;
}