dataflow analysis: allow absence of "textual" order during sorting of sources
[isl.git] / isl_point_private.h
blob327f55f5bca2e3ffd86bb20f514ebd85f1b5724c
1 #include <isl/dim.h>
2 #include <isl/point.h>
3 #include <isl/vec.h>
5 struct isl_point {
6 int ref;
7 struct isl_dim *dim;
8 struct isl_vec *vec;
9 };
11 __isl_give isl_point *isl_point_alloc(__isl_take isl_dim *dim,
12 __isl_take isl_vec *vec);